Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Follow AllMCPs on X (opens in a new tab)AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Developer Tools
  3. There's An AI For That
  4. README

There's An AI For That README

The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the There's An AI For That listing page.

Back to There's An AI For That View source on GitHub

TAAFT MCP server

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:

text
https://theresanaiforthat.com/mcp-server/

It uses Streamable HTTP and requires no authentication.

Cursor

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

bash
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:

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

Or install the Claude plugin from this repository:

Terminal
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:

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

For plugin-capable Codex surfaces:

bash
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-server/
  • 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:

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

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:

bash
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.

Prerequisites

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

Local development

Terminal
npm install
cp .env.example .env

Set at least TAAFT_API_BASE_URL in .env, then run:

Terminal
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:

config.json
{
  "mcpServers": {
    "taaft": {
      "url": "https://theresanaiforthat.com/mcp-server/"
    }
  }
}

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:

Terminal
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

Terminal
npm run typecheck
npm test
npm run build

Then connect with the MCP Inspector:

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