https://mcp.checklist.day/mcp MCP Server
Connect any MCP-compatible agent or IDE to checklist.day's registry and checklists. Gives your agent access to correct imports, known footguns, and working quickstart code for 1000+ Python libraries — at query time, not training time.
Server URL
Tools
- get_entry
- search_registry
- search_checklists
Connect
Claude Desktop / Claude Code
{
"mcpServers": {
"checklist-day": {
"type": "http",
"url": "https://mcp.checklist.day/mcp"
}
}
} Cursor / Windsurf
{
"mcp": {
"servers": {
"checklist-day": {
"url": "https://mcp.checklist.day/mcp",
"type": "http"
}
}
}
} Python (mcp client)
from mcp import ClientSession
from mcp.client.streamable_http import streamable_http_client
async with streamable_http_client("https://mcp.checklist.day/mcp") as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
result = await session.call_tool("get_entry", {"library": "chromadb"})
print(result.structuredContent) Discovery
- Well-known config · /.well-known/mcp.json
- Full registry index · /api/registry
- Full checklists index · /api/checklists