Spote includes a built-in Model Context Protocol (MCP) server that lets any compatible AI agent interact with your notes. Agents can save notes, search them, and retrieve past context — without switching apps.Documentation Index
Fetch the complete documentation index at: https://docs.spote.cloud/llms.txt
Use this file to discover all available pages before exploring further.
Endpoints
Spote exposes two transport endpoints depending on what your AI client supports:| Transport | URL |
|---|---|
| SSE (Server-Sent Events) | https://your-spote-app.com/sse |
| HTTP streaming | https://your-spote-app.com/mcp |
/mcp). Use /sse for clients that require SSE transport.
Authentication
Agents authenticate using a Personal Access Token (PAT) as a Bearer token in theAuthorization header:
What agents can do
Save notes
Tell your agent to save a note with a title, content, bucket, and tags. Spote indexes it immediately for semantic search.
Search semantically
Ask your agent to find notes about a topic. Spote searches by meaning, not exact wording — so you find notes even when you don’t remember the phrasing you used.
List & retrieve
List your most recent notes or fetch the full content of a specific note by ID. Useful for pulling context into a conversation.
Manage notes
Update or delete notes from within a conversation. Your agent can reorganize, retitle, or remove notes without you opening the app.
Supported AI tools
The Spote MCP server works with any client that supports the MCP protocol over SSE or HTTP streaming transport, including:- Claude Desktop (Anthropic)
- Cursor
- Windsurf
- Any tool that implements the MCP protocol with SSE or HTTP transport
Next steps
Connect an AI agent
Step-by-step setup for Claude Desktop, Cursor, and other MCP clients.
MCP tools reference
Full reference for every tool your agent can call, with parameters and return values.