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.
What your agent can do
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_notesList and filter your entire note library with pagination and status filters.
get_noteRead any note in full — content, tags, and linked video.
list_videosAccess your video library, filtered by channel or folder.
get_videoGet everything derived from a video: summaries, diagrams, notes, and quizzes in one call.
list_flashcard_quizzesFind flashcard quizzes by name, source video, or generation type.
get_flashcard_quizGet a quiz in full with all its flashcards, questions, and answers.
get_meCheck your profile, subscription status, and remaining credit balance.
Works with any AI agent
Any client that speaks MCP can access your LunaNotes library — just add your API key.
Claude Desktop, Cursor, VS Code Copilot, Windsurf, and more — if it supports MCP, it works with LunaNotes.
Get your API keyGet started in 2 steps
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"
}
}
}
}
}Let's Try!