H1B Sponsor MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@H1B Sponsor MCPShow top H-1B sponsors in 2023"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
H1B Sponsor MCP
Read-only MCP server for querying H-1B sponsoring employers from the USCIS Employer Information dataset.
Repository: https://github.com/ujjwalredd/H1B-Sponsor-MCP.git

This server lets MCP clients answer questions like:
"Does Stripe appear in the H-1B employer data?"
"Which companies had the most H-1B approvals in Texas in FY2024?"
"How did manufacturing sponsorship change from FY2009 to FY2026?"
The bundled cleaned dataset covers fiscal years 2009-2026 with 1,055,650 employer-year/location records and 392,843 distinct employer name strings. FY2026 is a partial year.
What It Provides
Tool | Purpose |
| Find employers by partial name, with lifetime totals |
| Get year-by-year approvals, denials, locations, and sectors for matching employers |
| Rank sponsors by approvals, denials, petitions, approval rate, new employment approvals, or continuation approvals |
| Return per-year totals from FY2009-FY2026, optionally filtered by state or NAICS sector |
| Summarize sponsorship by NAICS sector |
| Summarize sponsorship by US state or territory |
| Return dataset coverage, row counts, and caveats |
Related MCP server: DB MCP (HR CSV to SQLite)
Quick Start
uvx can fetch and run the server directly from
GitHub:
uvx --from git+https://github.com/ujjwalredd/H1B-Sponsor-MCP.git h1b-sponsor-mcpAfter the package is published to PyPI, this shorter form should also work:
uvx h1b-sponsor-mcpInstall uv if needed:
curl -LsSf https://astral.sh/uv/install.sh | shClaude Code
claude mcp add h1b-sponsors -- uvx --from git+https://github.com/ujjwalredd/H1B-Sponsor-MCP.git h1b-sponsor-mcpClaude Desktop
Add this server to claude_desktop_config.json:
{
"mcpServers": {
"h1b-sponsors": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/ujjwalredd/H1B-Sponsor-MCP.git",
"h1b-sponsor-mcp"
]
}
}
}Manual Install
git clone https://github.com/ujjwalredd/H1B-Sponsor-MCP.git
cd H1B-Sponsor-MCP
python -m pip install -e .
h1b-sponsor-mcpThe cleaned parquet is included in the package. To use a different cleaned dataset file:
export H1B_DATA_PATH=/path/to/h1b_employers_clean.parquetH1B_DATA_PATH must point to a .parquet file.
Data
Source: USCIS H-1B Employer Data Hub, Employer Information exports.
Coverage: fiscal years 2009-2026.
Packaged file:
src/h1b_mcp/data/h1b_employers_clean.parquet.Details: see DATA.md.
Recommended source citation:
U.S. Citizenship and Immigration Services (USCIS). H-1B Employer Data Hub, Employer Information exports. https://www.uscis.gov/tools/reports-and-studies/h-1b-employer-data-hub
This project is independent and is not affiliated with, sponsored by, or endorsed by USCIS, DHS, or the U.S. Government. The source data comes from a U.S. federal government publication; U.S. Government works are generally not copyright-protected in the United States under 17 U.S.C. Section 105. This is a practical attribution note, not legal advice.
Important caveats:
FY2026 is partial.
Counts are petitions, not unique workers.
Employer names are not entity-resolved; the same company may appear under multiple spellings or legal names.
approval_rateisapprovals / (approvals + denials).This project is an information tool, not legal or immigration advice.
Security Model
This server is intentionally narrow:
stdio transport by default; no network listener is opened by this package.
Read-only data access; no mutating MCP tools.
No SQL,
eval,exec, pickle loading, or shell execution.User search text is escaped before regex matching.
Years, states, NAICS sectors, sort metrics, and limits are validated before the data layer runs.
Results are hard-capped to protect client context windows.
Errors returned to clients are sanitized; stack traces stay in stderr logs.
See SECURITY.md for the full policy and vulnerability reporting instructions.
Development
python -m pip install -e ".[dev]"
pytest
ruff check src testsFor quick local test runs without installing the editable package:
PYTHONPATH=src pytestRun the MCP inspector:
mcp dev src/h1b_mcp/server.pyOpen Source
Contributions: CONTRIBUTING.md
Code of conduct: CODE_OF_CONDUCT.md
Support: SUPPORT.md
Security: SECURITY.md
Notice and attribution: NOTICE.md
License: MIT
The source code is MIT licensed. Retain USCIS attribution when redistributing the packaged or derived data files.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ujjwalredd/H1B-Sponsor-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server