NotesKeep MCP Server
Enables users to manage their notes on NotesKeep directly through Claude Code or other MCP clients. It supports creating, updating, and organizing both text and checklist notes using natural language commands.
README
NotesKeep MCP Server
MCP (Model Context Protocol) server for NotesKeep - interact with your notes via Claude Code.
Installation
npm install -g noteskeep-mcp
Or use directly with npx:
npx noteskeep-mcp
Setup
1. Get your API Key
- Go to NotesKeep
- Register or Login
- Go to Settings (gear icon in the header)
- Click Generate API Key
- Copy the generated key
2. Configure Claude Code
Option A: Using CLI (recommended)
claude mcp add --transport stdio noteskeep --scope user \
--env NOTESKEEP_API_KEY=your_api_key_here \
-- npx noteskeep-mcp
Option B: Manual configuration
Add to your ~/.claude.json under the mcpServers section:
{
"mcpServers": {
"noteskeep": {
"type": "stdio",
"command": "npx",
"args": ["noteskeep-mcp"],
"env": {
"NOTESKEEP_API_KEY": "your_api_key_here"
}
}
}
}
3. Restart Claude Code
After adding the configuration, restart Claude Code to load the MCP server.
Available Tools
| Tool | Description |
|---|---|
list_notes |
List your notes (with optional limit and archive filter) |
get_note |
Get a specific note by ID |
create_note |
Create a new note (text or checklist) |
update_note |
Update a note's content, title, or color |
delete_note |
Delete a note |
archive_note |
Archive a note |
pin_note |
Pin or unpin a note |
Environment Variables
| Variable | Required | Description |
|---|---|---|
NOTESKEEP_API_KEY |
Yes | Your NotesKeep API key |
NOTESKEEP_API_URL |
No | Custom API URL (defaults to https://noteskeep.vercel.app) |
Usage Examples
Once configured, you can ask Claude:
- "List my notes"
- "Create a note titled 'Shopping List' with items: milk, eggs, bread"
- "Show me note 5"
- "Pin note 3"
- "Archive note 7"
- "Update note 2 with new content: Meeting notes from today"
- "Create a checklist note for my weekend tasks"
Note Types
NotesKeep supports two types of notes:
- Text notes: Simple notes with a title and content
- Checklist notes: Notes with checkable items
Note Colors
Available colors: white, gray, yellow, orange, teal, blue, purple, pink
Development
# Clone the repository
git clone https://github.com/mariomosca/noteskeep-mcp.git
cd noteskeep-mcp
# Install dependencies
npm install
# Run in development mode
npm run dev
# Build
npm run build
Links
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.