Connect Your Notes to Any AI Agent
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.
- Browse Notes
list_notes - List and filter your entire note library with pagination and status filters.
- Read a Note
get_note - Read any note in full — content, tags, and linked video.
- Browse Videos
list_videos - Access your video library, filtered by channel or folder.
- Video Details
get_video - Get everything derived from a video: summaries, diagrams, notes, and quizzes in one call.
- Browse Quizzes
list_flashcard_quizzes - Find flashcard quizzes by name, source video, or generation type.
- Read a Quiz
get_flashcard_quiz - Get a quiz in full with all its flashcards, questions, and answers.
- Account Info
get_me - Check 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
ChatGPT
Gemini
Perplexity
Copilot
Mistral
Cursor
Get started in 2 steps
1. Get your API key
Go to Settings → API in your LunaNotes account and generate an API key.
2. Add to your client config
Paste the snippet below into your MCP client configuration and replace YOUR_API_KEY.
Claude Desktop
{
"mcpServers": {
"lunanotes": {
"url": "https://api.lunanotes.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Cursor / VS Code
{
"mcp": {
"servers": {
"lunanotes": {
"url": "https://api.lunanotes.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
}