Skip to content

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

Recommended

Install 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 pricing
search_mcp_serversFind MCP servers for Claude, Cursor, and other AI IDEs
search_agentsDiscover AI agents — coding tools, frameworks, CLIs
search_skillsBrowse agent skills and prompts
discoverSemantic search across everything with natural language
get_tool_detailsGet full details about any tool, server, or agent
get_categoriesList all available categories and filters

REST 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

MethodEndpointDescription
GET/api/v1/toolsSearch and list AI tools
GET/api/v1/tools/:idGet full details for a tool (by ID or slug)
GET/api/v1/mcp-serversSearch and list MCP servers
GET/api/v1/agentsSearch and list AI agents
GET/api/v1/skillsSearch and list agent skills
GET/api/v1/discoverSemantic search across all types
GET/api/v1/categoriesList categories and runtimes
GET/api/v1/compareCompare 2-4 tools side by side
GET/api/v1/tools/:id/reviewsGet reviews for a tool
GET/api/v1/tools/:id/healthGet health/uptime data

Query Parameters

All list endpoints support these common parameters:

qSearch query
categoriesComma-separated filter
sortpopular, newest, trending
pagePage number (default 1)
limitResults per page (max 50)
pricingfree, freemium, paid

Example

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.

Ready to build?

Install the MCP server or start making API calls in seconds.