ai-resilience-mcp
v1.0.1
Published
MCP server for AI Resilience Report career data. Look up AI resilience scores for any career by SOC code.
Downloads
201
Maintainers
Readme
AI Resilience MCP Server
A Model Context Protocol server that provides AI career resilience data from the AI Resilience Report. No API key required.
Tools
lookup_career
Look up AI resilience data for a career by its SOC code.
Input: { "code": "15-1252.00" }
Returns:
- AI resilience score, label, and confidence level
- Human-readable explanation of the resilience assessment
- CareerVillage internal model percentile and raw score
- Link to the full career report
Setup
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"ai-resilience": {
"command": "npx",
"args": ["-y", "ai-resilience-mcp"]
}
}
}Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"ai-resilience": {
"command": "npx",
"args": ["-y", "ai-resilience-mcp"]
}
}
}API
This server wraps the public AI Resilience API at https://www.airesilience.org/api/career/{code}.
The API uses 2019 SOC codes. Look up codes at bls.gov/soc.
Rate limited to 10 requests per minute.
Full API documentation: airesilience.org/api
