Servidor MCP que expone los datos de cantkeepupwithai.com (trends de IA, digest diario, toolbox, stats del pipeline) a asistentes compatibles con MCP como Claude Desktop.
POST /api/mcp. El código está en
github.com/santapau10/cantkeepupwithai-mcp.
No requiere instalar nada. Claude Desktop habla directo con este endpoint por HTTP.
MCP_AUTH_TOKEN) — vive como variable de entorno en el proyecto de Vercel, pedíselo a quien lo desplegó.~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonmcpServers:
{
"mcpServers": {
"cantkeepupwithai": {
"url": "https://cantkeepupwithai-mcp.vercel.app/api/mcp",
"headers": {
"Authorization": "Bearer TU_TOKEN_AQUI"
}
}
}
}
cantkeepupwithai con sus 6 herramientas.
Corre el servidor como proceso en tu máquina, hablando directo con un backend local o remoto.
git clone https://github.com/santapau10/cantkeepupwithai-mcp.git
cd cantkeepupwithai-mcp
npm install
npm run build
claude_desktop_config.json (ajustá la ruta):
{
"mcpServers": {
"cantkeepupwithai": {
"command": "node",
"args": ["/ruta/absoluta/a/cantkeepupwithai-mcp/dist/index.js"],
"env": {
"CKUWAI_API_BASE_URL": "http://localhost:4000"
}
}
}
}
CKUWAI_API_BASE_URL=http://localhost:4000, levantá el
backend real primero (npm run dev dentro de cantkeepupwithai/backend).
Si preferís pegarle a producción, usá
https://cantkeepupwithai-backend.vercel.app en su lugar.
| Herramienta | Qué hace |
|---|---|
get_trending_topics | Trends de IA rankeados por menciones, con sparkline de 7 días. |
get_trend_detail | Detalle de un trend: resumen, por qué importa, historial, fuentes. |
get_daily_digest | Digest diario (último, o por fecha YYYY-MM-DD). |
list_digest_archive | Archivo paginado de digests pasados. |
search_toolbox | Búsqueda de texto sobre trends, historias y toolbox. |
get_pipeline_stats | Stats de la última corrida del pipeline de ingesta. |
curl -X POST https://cantkeepupwithai-mcp.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Authorization: Bearer TU_TOKEN_AQUI" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'