Server URL
All MCP tools are available at:Querying UseAgents via MCP is currently free during our public beta. No API key is required. See Authentication for details.
Response format
MCP tools default to Toon (Token-Oriented Object Notation), a compact, token-efficient format designed for LLM consumption. Passformat: "json" on any tool call to get JSON text instead. Learn more at toonformat.dev.
See Response formats for API and CLI defaults.
What the tools do
Agents use these tools to:- Search the registry by natural-language problem statement and constraints
- Shortlist candidate tools with compact registry metadata
- Retrieve authoritative bootstrap context (install, examples, I/O) for a selected tool
- Search that tool’s official documentation for deeper how-to answers
- Optionally run a small program in a UseAgents sandbox with
test_tool - Hand off to official docs for full API depth instead of guessing from training data
Current reference pages
search_toolsfor natural-language registry searchget_tool_contextfor authoritative install and usage guidance for a selected slugsearch_docsfor searching a selected tool’s official documentationtest_toolto run an agent-authored snippet in a sandbox- Authentication for API key setup
Recommended workflow
Query the registry in three steps:- Call
search_toolsto find candidate tools by task, framework, or capability. - Call
get_tool_contextwith the selected slug before recommending installation steps, code, or usage patterns. - Call
search_docswith the same slug and a specific question when you need deeper answers from that tool’s official docs. - Optionally call
test_toolwith the files you wrote. Passenvwhen the snippet needs config or secrets.
get_tool_context has no result for a slug, treat the tool context as unavailable instead of guessing from training data.
Next steps
- Authentication to configure the server
- search_tools to query the registry
- get_tool_context to fetch tool-specific setup guidance
- search_docs to search a tool’s official documentation