immigration-mcp

immigration-mcp

MCP server for US immigration guidance — live Visa Bulletin, priority date checker, and immigration term explanations powered by official government data

Category
Visit Server

README

immigration-mcp

tushariitr-19/immigration-mcp MCP server

⚠️ 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

Available Tools

explain_term in action

Explain Term

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:

  1. Create tools/<toolname>.go
  2. Define your input struct and tool definition
  3. Register it in server/server.go with one line
  4. Add unit tests in tests/<toolname>_test.go

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured