- Explore MCP Servers
- my-mcp-claude
My Mcp Claude
What is My Mcp Claude
my-mcp-claude is an MCP server project designed to manage a simple note storage system, utilizing a custom URI scheme for accessing individual notes. It allows users to create, store, and summarize notes with distinct properties such as name, description, and content type.
Use cases
This server is useful for individuals or teams needing an organized way to store and retrieve notes, summaries of stored content, or for applications that require quick note-taking features. It can support tasks like project documentation, knowledge management, and collaborative brainstorming.
How to use
To use my-mcp-claude, first install it by configuring the appropriate settings in the Claude Desktop application. Then, you can add notes via the ‘add-note’ tool, which requires a name and content. To summarize all notes, invoke the ‘summarize-notes’ prompt with optional style preferences for varying detail levels.
Key features
Notable features include a custom ‘note://’ URI scheme for easy note access, the ability to create and manage notes with names and descriptions, and a summarization tool that allows for generating concise or detailed summaries of all stored notes, catering to user preferences.
Where to use
my-mcp-claude is well-suited for personal note-taking applications, educational tools, and collaborative platforms where notes are frequently shared and summarized. It can be implemented in any environment where structured note management is beneficial.
Overview
What is My Mcp Claude
my-mcp-claude is an MCP server project designed to manage a simple note storage system, utilizing a custom URI scheme for accessing individual notes. It allows users to create, store, and summarize notes with distinct properties such as name, description, and content type.
Use cases
This server is useful for individuals or teams needing an organized way to store and retrieve notes, summaries of stored content, or for applications that require quick note-taking features. It can support tasks like project documentation, knowledge management, and collaborative brainstorming.
How to use
To use my-mcp-claude, first install it by configuring the appropriate settings in the Claude Desktop application. Then, you can add notes via the ‘add-note’ tool, which requires a name and content. To summarize all notes, invoke the ‘summarize-notes’ prompt with optional style preferences for varying detail levels.
Key features
Notable features include a custom ‘note://’ URI scheme for easy note access, the ability to create and manage notes with names and descriptions, and a summarization tool that allows for generating concise or detailed summaries of all stored notes, catering to user preferences.
Where to use
my-mcp-claude is well-suited for personal note-taking applications, educational tools, and collaborative platforms where notes are frequently shared and summarized. It can be implemented in any environment where structured note management is beneficial.
Content
my-mcp-claude MCP server
A MCP server project
Components
Resources
The server implements a simple note storage system with:
- Custom note:// URI scheme for accessing individual notes
- Each note resource has a name, description and text/plain mimetype
Prompts
The server provides a single prompt:
- summarize-notes: Creates summaries of all stored notes
- Optional “style” argument to control detail level (brief/detailed)
- Generates prompt combining all current notes with style preference
Tools
The server implements one tool:
- add-note: Adds a new note to the server
- Takes “name” and “content” as required string arguments
- Updates server state and notifies clients of resource changes
Configuration
[TODO: Add configuration details specific to your implementation]
Quickstart
Install
Claude Desktop
On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
Development/Unpublished Servers Configuration
``` "mcpServers": { "my-mcp-claude": { "command": "uv", "args": [ "--directory", "/Users/dong-ju/Documents/My_code/my-mcp-claude", "run", "my-mcp-claude" ] } } ```Published Servers Configuration
``` "mcpServers": { "my-mcp-claude": { "command": "uvx", "args": [ "my-mcp-claude" ] } } ```Development
Building and Publishing
To prepare the package for distribution:
- Sync dependencies and update lockfile:
uv sync
- Build package distributions:
uv build
This will create source and wheel distributions in the dist/
directory.
- Publish to PyPI:
uv publish
Note: You’ll need to set PyPI credentials via environment variables or command flags:
- Token:
--token
orUV_PUBLISH_TOKEN
- Or username/password:
--username
/UV_PUBLISH_USERNAME
and--password
/UV_PUBLISH_PASSWORD
Debugging
Since MCP servers run over stdio, debugging can be challenging. For the best debugging
experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm
with this command:
npx @modelcontextprotocol/inspector uv --directory /Users/dong-ju/Documents/My_code/my-mcp-claude run my-mcp-claude
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.