MCP + REST API for AI Agents
One config. Your agent handles the rest.
Add the MCP config to Claude Desktop, Cursor, or VS Code. Your agent discovers tools, checks quality scores, and invokes automatically — no docs, no human in the loop.
// 1. Add to Claude Desktop, Cursor, or VS Code
{
"mcpServers": {
"invokit": {
"url": "https://api.invok.it/mcp/",
"headers": {
"Authorization": "Bearer ik-your-api-key"
}
}
}
}
// 2. Ask your agent anything:
"How many astronauts are in space right now?"
// Agent automatically:
// Searches invok.it for space tools
// Picks astros-now (quality: 96/100)
// Invokes and returns: "12 people in space"How it works
One config. Three steps. Full autonomy.
Connect
Paste the MCP config into Claude Desktop, Cursor, or VS Code. One-time setup — no SDK, no code, no local install.
mcpServers → invokitAsk
Tell your agent what you need in plain language. It searches invok.it, evaluates quality scores, and picks the best tool automatically.
search_tools → invoke_toolSelf-Heal
If a tool fails, the error includes alternatives with compatible schemas. Agent switches automatically — zero downtime.
get_tool_alternativesTry it
Just ask. Your agent does the rest.
After adding the MCP config, try any of these prompts in Claude Desktop or Cursor:
"How many astronauts are in space right now?"
Searches tools, picks astros-now, invokes it, returns crew list
"Get me 5 random user profiles for testing"
Finds random-user-generator, checks quality, invokes with count=5
"Compare cryptocurrency price tools"
Finds coingecko-price, coinpaprika-ticker, and others — compares quality scores and latency
Why agent-first?
Built for how agents think — not how developers read docs
Errors tell agents what to do next
Traditional APIs return a generic 500. Ours returns a machine-readable error code, explains what went wrong, and gives the agent a concrete recovery plan — retry with backoff, or switch to an alternative tool with a compatible schema.
{
"error": {
"code": "TOOL_TIMEOUT",
"message": "astros-now timed out after 10 s",
"severity": "retryable",
"suggested_actions": [
{ "action": "retry_with_backoff", "delay_ms": 2000 },
{
"action": "use_alternative",
"tool": "spacex-crew",
"compatibility": 0.91,
"reason": "Similar schema, returns crew in space, 99.2 % uptime"
}
]
}
}Popular Tools
Recently published and top-quality tools.
Ready to power your agents?
Get an API key, paste the MCP config, and your agent can discover and invoke tools in minutes.
Publish your tools
Make your API discoverable by thousands of AI agents. Import from OpenAPI or define manually.
Publish a Tool