MCP
AvailableExpose 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
| tool | When the agent calls it |
|---|---|
| search_context | Looking up a topic or past work before answering |
| add_entry | Saving content — auto-summarized and indexed |
| list_recent | Showing what you saved recently |
| get_entry | Reading the full content of one entry |
| list_tags | Listing the tags in your knowledge base |
| delete_entry | Removing an entry |
Resources and prompts are not exposed at this time.