MCP Server

AI Tool Search for AI Agents

Connect your AI assistant to our directory of AI tools via the Model Context Protocol (MCP). Let your AI find, compare, and recommend the right tools automatically.

Available Tools

The MCP server exposes four tools your AI agent can call:

search_tools

Search the directory by keyword or natural-language description. Uses hybrid search (fulltext + fuzzy + semantic) for the best results.

query string, required
limit number, 1-50, default 10

get_tool

Get full details about a specific tool: description, pricing, API availability, tags, and direct access links.

slug string, required (e.g. "chatgpt")

list_categories

List all available categories with tool counts. Useful for browsing the directory or narrowing down searches.

No parameters required

list_tools

Browse tools with optional filters for category, pricing, and sort order. Paginated results.

category string, optional
pricing free | freemium | paid | open-source | enterprise
sort popular | newest | alphabetical
page number, default 1
limit number, 1-50, default 20

How to Connect

Option 1: HTTP (Remote)

Connect to our hosted MCP server over HTTP. Works with any MCP client that supports the Streamable HTTP transport.

Endpoint URL
https://www.intelligencefor.me/api/mcp

This server uses stateless Streamable HTTP — each request is self-contained. No session headers required.

Option 2: Claude Desktop / Cursor

Add this to your MCP client configuration (e.g. claude_desktop_config.json):

Remote Server Config
{
  "mcpServers": {
    "intelligencefor-me": {
      "url": "https://www.intelligencefor.me/api/mcp"
    }
  }
}

Example Interaction

You: Find me a free AI tool for generating images from text descriptions
AI (calls search_tools): Found 5 AI tool(s) matching "free AI image generation from text":
  1. DALL-E - AI image generation by OpenAI
    URL: https://openai.com/dall-e | Pricing: Freemium
  2. Stable Diffusion - Open-source image generation
    URL: https://stability.ai | Pricing: Open-source
  3. ...

About MCP

The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. By exposing our AI tool directory via MCP, any compatible AI agent can search, discover, and recommend AI tools to users in real time.

Learn more about MCP at modelcontextprotocol.io.