TAAFT MCP server

MCP serverSearch

Your AI can search TAAFT for AI tools and pull up public details about them. Once added, it can help you find tools for a task or look up information about a specific tool you have in mind. TAAFT is a searchable directory of AI tools with public tool details.

Available today. Use it from your connected AI after setup.

Add it, then ask your AI to search TAAFT for tools for a task you have, or to look up public details about a specific tool.

Then ask your AI: use TAAFT MCP server

What your AI can do with it

  • Search TAAFT for AI tools
  • Find AI tools that match a task you describe
  • Retrieve public details about a specific AI tool
  • Look up information on tools before you try them
  • Bring tool details into the conversation so you can review them together

From the project's README

As published by taaft/mcp in README.md.

Remote, stateless Model Context Protocol server for finding AI tools in the TAAFT directory.

It exposes:

  • search_tools — search by query, type, sort, and result limit.
  • get_tool — retrieve public details by the slug returned from search.

The MCP endpoint is POST /mcp. GET /healthz is an unauthenticated liveness endpoint.

Install

The public endpoint is:

https://theresanaiforthat.com/mcp/

It uses Streamable HTTP and requires no authentication.

Cursor

The repository root is a Cursor plugin. For local plugin development:

mkdir -p ~/.cursor/plugins/local
ln -s "$(pwd)" ~/.cursor/plugins/local/taaft

Run Developer: Reload Window, then confirm taaft appears under Customize. Remove or disable a manually configured taaft server to avoid a duplicate name.

Claude

Add the connector directly to Claude Code:

claude mcp add --transport http taaft \
  https://theresanaiforthat.com/mcp/

Or install the Claude plugin from this repository:

claude plugin marketplace add taaft/mcp
claude plugin install taaft@taaft-plugins

For Claude.ai and Claude Desktop, add a custom connector under Customize → Connectors using the public endpoint and authentication type None.

Codex

Add the server directly to Codex CLI or the Codex IDE extension:

codex mcp add taaft \
  --url https://theresanaiforthat.com/mcp/

For plugin-capable Codex surfaces:

codex plugin marketplace add taaft/mcp
codex plugin add taaft@taaft-plugins

You can also install it interactively from /plugins. Codex IDE supports direct MCP configuration but does not currently install plugins.

ChatGPT

Enable Developer mode, open Plugins, select +, and register:

  • URL: https://theresanaiforthat.com/mcp/
  • Authentication: None
  • Transport: Streamable HTTP

The repository contains the Codex/OpenAI plugin package, but a ChatGPT plugin also needs an .app.json mapping to the plugin_asdk_app... identifier that ChatGPT creates when the endpoint is registered. That account-specific file cannot be generated before registration.

Visual Studio Code

This repository includes .vscode/mcp.json. Opening the repository in VS Code loads the server at workspace scope. To install it globally without cloning:

code --add-mcp \
  '{"name":"taaft","type":"http","url":"https://theresanaiforthat.com/mcp/"}'

A VS Code extension is unnecessary for a fixed remote endpoint. Public @mcp gallery inclusion is a separate, curated GitHub MCP Registry process.

Google Antigravity

After cloning the repository:

mkdir -p ~/.gemini/config/plugins
cp -R plugins/antigravity/taaft ~/.gemini/config/plugins/taaft

The plugin uses serverUrl, the current Antigravity key for remote MCP servers. No transport or authentication fields are needed. Restart Antigravity after copying the plugin.

Grok

Grok Build automatically loads .grok/config.toml, which enables the Claude-compatible TAAFT plugin already shipped in this repository. To add the remote server directly instead:

grok mcp add --transport http taaft \
  https://theresanaiforthat.com/mcp/

Grok can also load the packaged plugin explicitly:

grok --plugin-dir ./plugins/claude/taaft

Use grok inspect or grok mcp doctor taaft to verify discovery and connectivity.

Prerequisites

  • Node.js 22+
  • Access to the internal TAAFT HTTP API

Local development

npm install
cp .env.example .env

Set at least TAAFT_API_BASE_URL in .env, then run:

npm run dev

By default, the service listens on http://localhost:3000/mcp.

The upstream adapter expects:

  • GET {TAAFT_SEARCH_PATH}?query=...&type=...&sort=...&limit=...
  • GET {TAAFT_TOOL_PATH_TEMPLATE}, replacing {slug} with the URL-encoded slug

Search may return an array or an object containing tools, results, or data. Detail may return the tool directly or under tool or data. Change the adapter in src/taaft-client.ts if the internal API contract differs; do not add more environment-driven response mapping.

Example client configuration:

{
  "mcpServers": {
    "taaft": {
      "url": "https://theresanaiforthat.com/mcp/"
    }
  }
}

Production

Set:

  • NODE_ENV=production
  • PUBLIC_BASE_URL to the external HTTPS origin
  • TAAFT_API_BASE_URL and, if required, TAAFT_API_KEY

Build and run:

docker build -t taaft-mcp .
docker run --rm -p 3000:3000 --env-file .env taaft-mcp

Terminate TLS at your ingress or load balancer. The application is stateless, so it can run multiple replicas without sticky sessions. Apply rate limits at the ingress because the MCP endpoint is intentionally public; application-level rate limiting is ineffective once replicas are added.

Verification

npm run typecheck
npm test
npm run build

Then connect with the MCP Inspector:

npx @modelcontextprotocol/inspector http://localhost:3000/mcp

Signals

Last commit
Sep 2026
Advanced
Delivery
taaft MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
Catalog kind
mcp-server
Gateway key
com-theresanaiforthat-taaft
Source
github.com/taaft/mcp
Hosted endpoint
https://theresanaiforthat.com/mcp-server/