Build with AllYourTech
Access 5,000+ AI tools, 400+ MCP servers, and agent skills via our REST API or MCP server. Let your AI agents discover the best tools programmatically.
MCP Server
RecommendedInstall our MCP server to give Claude Code, Cursor, Windsurf, and other AI IDEs the ability to search and discover AI tools directly.
Install with npx:
npx @allyourtech/mcp-server
Add to Claude Code config (~/.claude/settings.json):
{
"mcpServers": {
"allyourtech": {
"command": "npx",
"args": ["@allyourtech/mcp-server"]
}
}
}Available Tools
search_ai_toolsSearch AI tools by keyword, category, or pricingsearch_mcp_serversFind MCP servers for Claude, Cursor, and other AI IDEssearch_agentsDiscover AI agents — coding tools, frameworks, CLIssearch_skillsBrowse agent skills and promptsdiscoverSemantic search across everything with natural languageget_tool_detailsGet full details about any tool, server, or agentget_categoriesList all available categories and filtersREST API
All endpoints return JSON. No authentication required for read access. Add an API key for higher rate limits.
Base URL:
https://allyourtech.ai/api/v1
Endpoints
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/v1/tools | Search and list AI tools |
| GET | /api/v1/tools/:id | Get full details for a tool (by ID or slug) |
| GET | /api/v1/mcp-servers | Search and list MCP servers |
| GET | /api/v1/agents | Search and list AI agents |
| GET | /api/v1/skills | Search and list agent skills |
| GET | /api/v1/discover | Semantic search across all types |
| GET | /api/v1/categories | List categories and runtimes |
| GET | /api/v1/compare | Compare 2-4 tools side by side |
| GET | /api/v1/tools/:id/reviews | Get reviews for a tool |
| GET | /api/v1/tools/:id/health | Get health/uptime data |
Query Parameters
All list endpoints support these common parameters:
qSearch querycategoriesComma-separated filtersortpopular, newest, trendingpagePage number (default 1)limitResults per page (max 50)pricingfree, freemium, paidExample
curl "https://allyourtech.ai/api/v1/tools?q=code+assistant&pricing=free&limit=5"
# Response:
{
"data": [
{
"id": "...",
"name": "Cursor",
"slug": "cursor",
"description": "AI-first code editor...",
"websiteUrl": "https://cursor.com",
"pricing": { "type": "freemium" },
"likes": 42,
...
}
],
"meta": { "total": 23, "page": 1, "perPage": 5 }
}Authentication
Read endpoints work without authentication. For higher rate limits, create an API key in your dashboard and include it as a Bearer token.
curl -H "Authorization: Bearer ayt_your_api_key_here" \ "https://allyourtech.ai/api/v1/tools?q=image+generation"
Use Cases
AI Agent Tool Discovery
Let your AI agent find the right tool for any task. "Find me a free image generation API" → structured results with pricing, features, and install instructions.
MCP Server Registry
Build tools that help developers discover and install MCP servers. Our registry has 400+ servers for databases, APIs, file systems, and more.
Skill Marketplace
Access our agent skills directory to find reusable prompts and workflows for Claude Code, OpenClaw, and other agent platforms.
Comparison Engine
Build "vs" pages, recommendation engines, or comparison tools powered by our structured data and user ratings.