Thinking and learning tool
## RemNote MCP Server: Knowledge Management Platform The **RemNote MCP Server** integrates RemNote knowledge management into Google Antigravity, enabling AI-assisted note-taking, spaced repetition learning, and knowledge organization. ### Why RemNote MCP? - **Integrated Learning**: Notes automatically become flashcards - **Spaced Repetition**: Built-in SRS for long-term retention - **Hierarchical Notes**: Organize knowledge in nested structures - **References**: Bi-directional links between concepts - **PDF Annotation**: Annotate PDFs with linked notes ### Key Features #### 1. Note Creation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create RemNote document for Python concepts with flashcard formatting" }] ) ``` #### 2. Flashcard Practice ```python # Practice flashcards response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show due flashcards and track study progress" }] ) ``` #### 3. Search ```python # Search notes response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Search RemNote for all references to machine learning" }] ) ``` #### 4. Document Import ```python # Import content response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Import PDF and create linked notes from highlights" }] ) ``` ### Configuration ```json { "mcpServers": { "remnote": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-remnote"], "env": { "REMNOTE_API_KEY": "your-api-key" } } } } ``` ### Use Cases **Study**: Learn and retain information effectively. **Research**: Organize research with connected notes. **Professional Development**: Continuous learning with SRS. **Knowledge Base**: Build personal knowledge base. The RemNote MCP Server brings learning-focused note-taking into your workflow.
{
"mcpServers": {
"remnote": {
"mcpServers": {
"remnote": {
"env": {
"REMNOTE_API_KEY": "your-api-key"
},
"args": [
"-y",
"remnote-mcp-server"
],
"command": "npx"
}
}
}
}
}