Skip to main content
The UseAgents MCP server exposes tools that let AI agents query the UseAgents registry directly. Use it when your agent needs grounded tool discovery instead of recalled package names or guessed integrations.

Server URL

All MCP tools are available at:
https://mcp.useagents.site/mcp
Connect your agent to this URL with an API key in the x-api-key header. See Authentication for setup.

Response format

MCP tools return data in Toon (Token-Oriented Object Notation), a compact, token-efficient format designed for LLM consumption. Toon uses fewer tokens than JSON while remaining human-readable. Learn more at toonformat.dev.

What the tools do

UseAgents MCP tools help agents:
  • Search for tools by natural-language problem statement
  • Shortlist candidate tools with compact registry metadata
  • Retrieve authoritative implementation context for a selected tool
  • Recommend verified tools with less hallucination risk

Current reference pages

Use the MCP server in two steps:
  1. Call search_tools to find candidate tools by task, framework, or capability.
  2. Call get_tool_context with the selected slug before recommending installation steps, code, or usage patterns.
If get_tool_context has no result for a slug, treat the tool context as unavailable instead of guessing from training data.

Next steps