runwayMCP
runwayMCP enables job seekers to evaluate US job postings by automatically checking a company's H-1B sponsorship history using real USCIS data, helping them avoid wasting time on roles that won't sponsor visas.
README
runwayMCP
An MCP server that gives Claude Code real data for job search decisions.
When you paste a job posting URL into Claude Code, it can automatically check whether the company has a history of H-1B sponsorship — so you know before you spend hours on an application.
Built for job seekers who need visa sponsorship for US roles.
How it works
Claude Code launches this server over stdio and calls its tools when relevant. You don't invoke the tools directly — Claude decides when to call them based on the conversation.
You: "Evaluate this role for me: https://jobs.example.com/swe-123"
Claude:
1. fetch_job_posting(url) → job title, company, country, full JD
2. check_visa_sponsorship(company) → H-1B history, approval rate, verdict
3. [reasons over the data] → fit analysis, red flags, application advice
The visa check only runs for US roles — Claude skips it for positions in other countries.
Status
| Tool | Status |
|---|---|
check_visa_sponsorship |
✅ Working — real USCIS data |
fetch_job_posting |
✅ Working — Ashby and Greenhouse |
Tools
check_visa_sponsorship(company: str) -> VisaResult
Looks up a company's H-1B petition history via the USCIS H-1B Employer Data Hub.
Pass the full employer name as it appears in the job posting (e.g. "Google LLC", "Microsoft Corporation"). Abbreviated names may match subsidiaries.
Returns: company, total_filings, approval_rate (0–1), verdict (green/yellow/red), source.
Verdict thresholds (calibrated against FY2026 data, ~36k employers):
green— ≥ 5 filings AND approval rate ≥ 80% (active sponsor, top ~10%)yellow— ≥ 1 filing AND approval rate ≥ 50% (has sponsored before)red— no record or rate below threshold
Data is downloaded and cached at ~/.cache/runway-mcp/uscis_h1b.csv on first call (~2MB).
fetch_job_posting(url: str) -> JobPostingResult
Fetches and parses a job posting from a URL.
Returns: title, company, country, location, description, posted_date, source_url.
The country field in the output is what Claude uses to decide whether to call check_visa_sponsorship.
Supported job boards
| Board | Status | Hosts |
|---|---|---|
| Ashby | ✅ Supported | jobs.ashbyhq.com |
| Greenhouse | ✅ Supported | boards.greenhouse.io, job-boards.greenhouse.io |
| 🔜 Coming soon | linkedin.com/jobs |
|
| Lever | ⬜ Not yet | jobs.lever.co |
| Workday | ⬜ Not yet | *.myworkdayjobs.com |
| Rippling | ⬜ Not yet | app.rippling.com/jobs |
Setup
1. Clone and install
git clone https://github.com/satovarb16/runwayMCP
cd runwayMCP
pip install -e ".[dev]"
2. Configure Claude Code
Add to your Claude Code settings.json (.claude/settings.json in the project, or ~/.claude/settings.json globally):
{
"mcpServers": {
"runway-mcp": {
"command": "python",
"args": ["-m", "server"],
"cwd": "/absolute/path/to/runwayMCP"
}
}
}
Replace the cwd with your actual path. On Windows use double backslashes: "C:\\Users\\you\\runwayMCP".
3. Use it
Open Claude Code and ask it to evaluate a job posting. On first call, the server downloads the USCIS dataset (~2MB) to ~/.cache/runway-mcp/.
Updating USCIS data
The server downloads FY2023 data automatically on first run. For newer data:
- Go to https://www.uscis.gov/tools/reports-and-studies/h-1b-employer-data-hub
- Click Crosstab View → select fiscal year → Download to Excel → CSV
- Replace
~/.cache/runway-mcp/uscis_h1b.csvwith the downloaded file
The parser auto-detects encoding and column format across fiscal year versions.
Tool vs. reasoning boundary
These tools only fetch and shape data. Claude handles all reasoning:
- Whether to call
check_visa_sponsorship(only for US roles) - How to interpret the verdict in context
- Whether the role is a good fit overall
This is intentional — tools that encode judgment make Claude less useful, not more.
Tests
pytest -m contract # fast contract tests
pytest -m integration # server tool registration
pytest # full suite (50 tests)
Contributing
Next useful changes: LinkedIn support in fetch_job_posting, and additional job boards. PRs welcome.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。