Connect InNotes to your AI
Add the InNotes MCP server to Claude, Cursor and other AI assistants so they can remember and recall facts about your contacts.
InNotes exposes an MCP (Model Context Protocol) server. Once connected, your AI can store memories about the people in your network and recall them later to help you keep relationships warm.
MCP endpoint
https://innotes.me/api/mcpGet an API token (for token-based clients)
Some clients connect with a token instead of a login. Create one under Profile → API Tokens and use it in the Authorization header shown below. You can revoke it anytime.
Open API TokensAdd it to your AI
Claude (claude.ai)
Open Settings → Connectors → Add custom connector, paste the endpoint above and confirm. Claude sends you through the InNotes login and consent screen — no token needed.
Claude Desktop
Settings → Connectors → Add custom connector, then paste the endpoint. Sign in to InNotes when prompted.
Claude Code / CLI
Create an API token, then run:
claude mcp add --transport http innotes https://innotes.me/api/mcp \
--header "Authorization: Bearer inn_..."Cursor
Add an MCP server in Cursor's settings (or ~/.cursor/mcp.json) with the endpoint and your token:
{
"mcpServers": {
"innotes": {
"url": "https://innotes.me/api/mcp",
"headers": { "Authorization": "Bearer inn_..." }
}
}
}ChatGPT & other MCP clients
In any client that supports custom MCP servers, add a Streamable HTTP server pointing at the endpoint, with your token in the Authorization header. Where MCP connectors live — and whether they are available — varies by client and plan.
Your data stays yours
The connection only ever acts on your own InNotes account, and AI memories are always private. Revoke access anytime from Profile → API Tokens, or by removing the connector in your AI client.