Metadata-Version: 2.4
Name: aidevtube-mcp
Version: 0.1.0
Summary: MCP server for the AI YouTube Digest API — semantic search over AI/coding YouTube video summaries.
Project-URL: Homepage, https://aidevtube.com
Author: Bastian Brand
License: MIT
Keywords: ai,digest,mcp,rag,search,youtube
Requires-Python: >=3.10
Requires-Dist: fastmcp>=2.0
Requires-Dist: httpx>=0.27
Description-Content-Type: text/markdown

# aidevtube-mcp

MCP server for the [AI YouTube Digest](https://aidevtube.com) API — semantic search
over a longitudinal corpus of per-video summaries from ~40 curated AI/coding YouTube
channels.

Requires a **Pro API key** (`AIDEVTUBE_API_KEY`) — get one at https://aidevtube.com
(Account → API). Calls `api.aidevtube.com`.

## Tools

- `search(query, topics, channel, lang, limit)` — semantic search (empty `query` = browse newest by filters).
- `list_topics()` — valid topic labels for the `topics` filter.

## Use with Claude Code / Cursor / Claude Desktop

```json
{
  "mcpServers": {
    "aidevtube": {
      "command": "uvx",
      "args": ["aidevtube-mcp"],
      "env": { "AIDEVTUBE_API_KEY": "adt_your_key_here" }
    }
  }
}
```

Or run directly:

```bash
AIDEVTUBE_API_KEY=adt_… uvx aidevtube-mcp
```

## Env

| Var | |
|-----|--|
| `AIDEVTUBE_API_KEY` | your Pro API key (required) |
| `AIDEVTUBE_API_BASE` | override API base (default `https://api.aidevtube.com`) |
