tushariitr-19/immigration-mcp
šļø š šŖ š§ - MCP server for US immigration guidance ā live Visa Bulletin, priority date checker and immigration term explanations. Free to use.
Quick Install
{
"mcpServers": {
"tushariitr-19-immigration-mcp": {
"command": "npx",
"args": [
"-y",
"tushariitr-19-immigration-mcp"
]
}
}
}Using an AI coding agent (Claude Code, Cursor, etc.)? Copy a ready-made prompt that tells it to fetch the setup instructions and install this server for you.
Documentation Overview
immigration-mcp
ā ļø Disclaimer: This tool is for informational purposes only and does not constitute legal advice. Always consult a qualified immigration attorney for decisions about your specific case. Data is sourced from official government websites (USCIS, State Department) but may not reflect the most recent updates.
An MCP (Model Context Protocol) server for US immigration guidance ā live Visa Bulletin, priority date checker, USCIS news, and immigration term explanations.
Built with the official Go MCP SDK.
Why immigration-mcp?
Navigating US immigration is complex and expensive. immigration-mcp gives AI agents access to live, structured immigration data from official government sources ā so you can ask questions in plain English and get accurate, up-to-date answers.
- Free ā powered by public government data sources (USCIS, State Department)
- Live data ā fetches the latest Visa Bulletin monthly, USCIS news daily
- Open source ā MIT licensed
- Production grade ā structured logging, graceful shutdown, unit tested
Available Tools
| Tool | Description |
|---|---|
get_visa_bulletin | Fetch the latest US Visa Bulletin with employment-based priority dates by country and category |
check_priority_date | Check if your priority date is current for I-485 filing |
explain_term | Plain English explanation of any immigration term |
Example Prompts
Once connected to Claude Desktop:
- "What are the current EB2 priority dates for India?"
- "My priority date is March 2015, I'm from India EB2 ā can I file I-485 this month?"
- "Has EB2 India moved forward compared to last month?"
- "What is the difference between Final Action Date and Date for Filing?"
- "Are there any recent USCIS policy changes affecting H1B holders?"
- "What documents do I need to file I-485?"
Prerequisites
- Go 1.25+
- No API keys required ā powered by public government data
Setup
1. Install
git clone https://github.com/tushariitr-19/immigration-mcp
cd immigration-mcp
go build -o immigration-mcp-server ./cmd/server/
2. Configure Claude Desktop
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"immigration-mcp": {
"command": "/path/to/immigration-mcp-server",
"env": {
"DEBUG": "false"
}
}
}
}
Optional:
export DEBUG=true # enables debug logging
Screenshots
Available Tools

explain_term in action

Architecture
immigration-mcp/
āāā cmd/server/main.go ā entry point, env vars, graceful shutdown
āāā server/server.go ā MCP server setup, tool registration
āāā tools/
ā āāā visa_bulletin.go ā get_visa_bulletin tool
ā āāā priority_date.go ā check_priority_date tool
ā āāā explain_term.go ā explain_term tool
āāā util/
ā āāā util.go ā shared helper functions
ā āāā constants.go ā shared constants
āāā models/
ā āāā models.go ā shared data models
āāā tests/
ā āāā visa_bulletin_test.go ā unit tests
āāā logger/
ā āāā logger.go ā structured logging via zap
āāā Dockerfile
Each tool is self-contained ā the server is agnostic of what tools do internally. Adding a new tool is a single line in server/server.go.
Running Tests
# Unit tests only
make test-unit
# Integration tests only
make test-integration
# All tests
make test
# Build binary
make build
Contributing
PRs welcome. To add a new tool:
- Create
tools/<toolname>.go - Define your input struct and tool definition
- Register it in
server/server.gowith one line - Add unit tests in
tests/<toolname>_test.go
License
MIT