AI Tools MCP
README.md
# AI Tools MCP
An MCP server that gives your AI assistant access to a database of ~400 AI tool cards extracted from [The AI Search](https://www.youtube.com/@theAIsearch) YouTube channel, each with pricing, platform, use cases, and source links. Updated automatically as new videos are published.
Built so you can ask your AI "what tool should I use for X?" and get an answer grounded in hands-on testing from a channel that's reviewed 2-3 AI tools a week for years.
## Install
Add to your MCP config (Claude Code, Cursor, Windsurf, or any MCP-compatible client):
```json
{
"mcpServers": {
"ai-tools": {
"command": "npx",
"args": ["-y", "@caseybuilds/ai-tools-mcp"]
}
}
}
```
No API keys, no setup.
## What it does
The server exposes one tool: `search_tools`. When called, it returns every card in the database. Your AI reads them all and picks what's relevant to your question.
Why return everything instead of filtering? The AI matches intent to tool better than keyword search — a query about "making 3D product mockups" should surface a card that says "generate photorealistic scene compositions."
The full set fits comfortably in any modern LLM's context. If you want to keep your main conversation's context clean, have your AI call this tool from a sub-agent.
## What's in each card
- **Tool name** and one-line description
- **URL**, **pricing** (free / freemium / paid / open-source), **platform** (web / local / API / mobile / etc.)
- **Local-friendly**: whether it runs on consumer hardware
- **What it does**: 2-3 sentence summary
- **When to use it**: the job this tool is best at
- **Sources**: links to the original YouTube reviews with dates and depth (deep-dive vs. mention)
## Where the data comes from
All cards are extracted from video transcripts on [The AI Search](https://www.youtube.com/@theAIsearch), a YouTube channel that reviews AI tools 2-3 times per week. Each card links back to its source video(s).
## For developers
```bash
git clone https://github.com/Minecraft9101010/ai-tools-mcp.git
cd ai-tools-mcp
npm install
npm run dev
```
The server fetches cards from GitHub first (so users always get the latest). If that fails (offline, rate-limited), it falls back to the local `cards/` directory. Cards are cached in memory for one hour.
## License
[MIT](LICENSE)
TDQS
A4.2/5.0
Scored across 1 tool
Disambiguation5/5
With only one tool exposed, there is no possibility of confusion or overlap. The tool's purpose is singular and unambiguous.
Naming Consistency5/5
The single tool name follows a clear verb_noun snake_case convention. With only one tool, there is no inconsistent pattern to penalize.
Tool Count2/5
A one-tool server feels too thin for the broad 'AI Tools MCP' scope. Even if the single function is useful, agents have no complementary operations or filtering capabilities.
Completeness2/5
The tool only returns all AI tool cards at once, with no filtering, searching, retrieval by ID, or management operations. Significant gaps exist for a server ostensibly about AI tools.
Maintenance
ActivityMaintained
ResponsivenessNo issues