MCP Server

live  ·  streamable-http  ·  no auth required

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

https://mcp.checklist.day/mcp

Transport: Streamable HTTP  ·  Auth: none

Tools

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