Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

tushariitr-19/immigration-mcp MCP server](https://glama.ai/mcp/servers/tushariitr-19/immigration-mcp/badges/score.svg)](https://glama.ai/mcp/servers/tushariitr-19/immigration-mcp) 🏎️ 🍎 πŸͺŸ 🐧 - MCP server for US immigration guidance β€” live Visa Bulletin,...

README.md

immigration-mcp

![Go Version](https://golang.org) ![License: MIT](LICENSE) ![tushariitr-19/immigration-mcp MCP server](https://glama.ai/mcp/servers/tushariitr-19/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: ``bash 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

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Other servers.