- Home
- MCP servers
- MyMcpServer
MyMcpServer
- typescript
0
GitHub Stars
typescript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"miles990-mymcpserver": {
"command": "node",
"args": [
"/path/to/MyMcpServer/build/index.js"
]
}
}
}This MCP server provides a simple notes system where resources represent text notes, and you can create new notes and generate summaries of all stored notes. It’s useful for building modular AI workflows that manage structured notes, expose text data as URIs, and harness prompts to create summaries or analyses.
How to use
You interact with the server via an MCP client to list, access, and manage notes through note:// URIs. Create new notes with the create_note tool, and generate a summary of all notes using the summarize_notes prompt. Use the resources to read, edit, and reference metadata from stored notes, and rely on the prompts to produce structured insights from the full note set.
How to install
Prerequisites you need before installing this MCP server are Node.js and npm. Ensure you have a supported Node.js version installed on your system.
Clone the project to your local workspace, install dependencies, and build the server. Run each command in order:
# Clone the repository
git clone https://github.com/miles990/mymcpserver.git
cd mymcpserver
# Install dependencies
npm install
# Build the server
npm run build
# Optional: start a watcher for auto-rebuild during development
npm run watch
Additional configuration and notes
To enable the MCP server in Claude Desktop, you can add a server entry in the Claude configuration file. Append a server entry named MyMcpServer with the path to the built runtime.
{
"mcpServers": {
"MyMcpServer": {
"command": "/path/to/MyMcpServer/build/index.js"
}
}
}
Debugging
MCP servers communicate over stdio. If you need debugging tools, use the MCP Inspector, which can be invoked to start a debugging session and provides a browser-accessible URL to inspect MCP traffic and server state.
npm run inspector
Available tools
create_note
Create new text notes by providing a title and content; stores the note in server state.
summarize_notes
Generate a summary of all stored notes by including note contents as embedded resources and returning a structured prompt for LLM summarization.