LunaNotes ships a Model Context Protocol (MCP) server. Give Claude, Cursor, ChatGPT, or any MCP-compatible agent direct read access to your entire knowledge base.
Every tool is read-only and scoped to your own data — there's no way for an agent to access another user's library.
list_notesget_notelist_videosget_videolist_flashcard_quizzesget_flashcard_quizget_meAny client that speaks MCP can access your LunaNotes library — just add your API key.
Go to Settings → API in your LunaNotes account and generate an API key.
Paste the snippet below into your MCP client configuration and replace YOUR_API_KEY.
Claude Desktop
{
"mcpServers": {
"lunanotes": {
"url": "https://api.lunanotes.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Cursor / VS Code
{
"mcp": {
"servers": {
"lunanotes": {
"url": "https://api.lunanotes.com/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
}