Dynamically discovers and executes relevant OpenAPI endpoints using semantic search and dependency graphs without loading full specs.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag โ we're steadily working through the catalog.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Jitapi.
register_apiRegister an API from an OpenAPI spec URL
list_apisList all registered APIs and their endpoint counts
search_endpointsSemantic search across endpoints using natural language
get_workflowFind relevant endpoints with dependency resolution and full schemas
get_endpoint_schemaGet the complete schema for a specific endpoint
call_apiExecute a single API call with auth, path params, query params, and body
Point Claude at any API. JitAPI figures out which endpoints to call and in what order โ automatically.
JitAPI is an MCP server that lets Claude interact with any API from its OpenAPI spec. Instead of dumping hundreds of endpoints into context, JitAPI uses semantic search and a dependency graph to surface only what's needed โ then Claude plans and executes the calls.
https://github.com/user-attachments/assets/53f72f89-a41a-4a9c-a688-ec876ea05fbd
Stripe has 300+ endpoints. GitHub has 800+. Loading the full spec into Claude's context wastes tokens and causes hallucinations. Writing a custom MCP server for every API you use doesn't scale.
JitAPI solves this: register any OpenAPI spec once, then ask for what you need in plain English. It finds the right endpoints, resolves dependencies between them, and lets Claude execute the calls.
Add to your Claude Code config (.mcp.json):
That's it. No API keys required โ JitAPI uses local embeddings out of the box.
Then in Claude:
The killer feature: register multiple APIs and ask questions that span them. JitAPI searches across all registered APIs and Claude chains the calls.
| Tool | Description |
|---|---|
register_api | Register an API from an OpenAPI spec URL |
list_apis | List all registered APIs and their endpoint counts |
search_endpoints | Semantic search across endpoints using natural language |
get_workflow | Find relevant endpoints with dependency resolution and full schemas |
get_endpoint_schema | Get the complete schema for a specific endpoint |
call_api | Execute a single API call with auth, path params, query params, and body |
set_api_auth | Configure authentication (API key header, API key query param, or bearer token) |
delete_api | Remove a registered API and all its data |
Create .mcp.json in your project directory (or ~/.claude.json for global access):
Add to your Claude Desktop config:
| OS | Config path |
|---|---|
| macOS | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Windows | %APPDATA%\Claude\claude_desktop_config.json |
| Linux | ~/.config/Claude/claude_desktop_config.json |
JitAPI works out of the box with local embeddings (fastembed) โ no API keys needed. For better search quality on large APIs, you can add a cloud embedding provider:
| Provider | Quality | Setup |
|---|---|---|
| Local (default) | Good | Nothing โ works immediately |
| Voyage AI (recommended) | Excellent | pip install jitapi[voyage] + set VOYAGE_API_KEY |
| OpenAI | Excellent | pip install jitapi[openai] + set OPENAI_API_KEY |
| Cohere | Very good | pip install jitapi[cohere] + set COHERE_API_KEY |
Set the API key in your MCP config's env block:
Provider is auto-detected from available environment variables. Priority: Voyage AI > OpenAI > Cohere > local.
Configure API authentication after registering. Supported auth types: bearer, api_key (custom header), and api_key_query (query parameter). The recommended approach uses environment variables so secrets are never written to disk:
Then tell Claude to use the env var:
With env_var, JitAPI reads the secret from the environment at request time โ only the env var name is persisted, never the credential itself.
You can also pass credentials directly (they'll be stored in ~/.jitapi/auth.json with 0600 permissions):
Supported auth types: bearer, api_key (custom header, default X-API-Key), api_key_query (query parameter).
Security note: When using
env_var, credentials are resolved at runtime and never touch the filesystem. When passingcredentialdirectly, secrets are stored as plaintext JSON at~/.jitapi/auth.json(file permissions0600, directory0700). For production use, prefer theenv_varapproach.
| Variable | Required | Description |
|---|---|---|
VOYAGE_API_KEY | No | Voyage AI API key (recommended cloud provider) |
OPENAI_API_KEY | No | OpenAI API key (alternative cloud provider) |
COHERE_API_KEY | No | Cohere API key (alternative cloud provider) |
JITAPI_STORAGE_DIR | No | Data directory (default: ~/.jitapi) |
JITAPI_LOG_LEVEL | No | DEBUG, INFO, WARNING, ERROR (default: INFO) |
MIT
Built by Neelabh Kumar โ AI engineer and builder.
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/nk3750-jitapi)<a href="https://allmcps.com/mcp/nk3750-jitapi"><img src="https://allmcps.com/api/badge/nk3750-jitapi?style=directory" alt="Jitapi on AllMCPs" /></a>