MCP

Available

Expose your sum.md knowledge base to Claude Code and any MCP-compatible agent, so it can search and save context directly inside a conversation.

What MCP is

The Model Context Protocol (MCP) is an open standard that lets AI agents call external tools. sum.md runs an MCP server at https://sum.md/mcp — connect it once and your agent can read from and write to your library on your behalf.

Connect with Claude Code

Add the server with the Claude CLI:

claude mcp add --transport http --scope user summd https://sum.md/mcp

On first use it opens a browser for a one-time OAuth2 authorization. No keys to copy or manage.

Connect with an API key

For clients that don't support MCP OAuth, create a key at Settings and add the server manually:

{
  "mcpServers": {
    "summd": {
      "type": "http",
      "url": "https://sum.md/mcp",
      "headers": { "Authorization": "Bearer sk-summd-xxxx" }
    }
  }
}

Available tools

toolWhen the agent calls it
search_contextLooking up a topic or past work before answering
add_entrySaving content — auto-summarized and indexed
list_recentShowing what you saved recently
get_entryReading the full content of one entry
list_tagsListing the tags in your knowledge base
delete_entryRemoving an entry

Resources and prompts are not exposed at this time.