MyMcpServer MCP Server
Overview
MyMcpServer is a Model Context Protocol (MCP) server built with TypeScript that implements a simple notes system, demonstrating core MCP concepts.
To use MyMcpServer, install the dependencies, build the server, and configure it with your application. You can create notes and generate summaries through the provided tools and prompts.
- Resources for managing text notes with URIs and metadata. - Tools for creating new notes with required parameters. - Prompts for generating summaries of all stored notes.
- Managing personal notes with easy access via URIs.
- Creating and storing notes programmatically.
- Summarizing notes for quick reference.
Add to your AI client
Use these steps to connect MyMcpServer MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mymcpserver-miles990": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mymcpserver-miles990": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mymcpserver-miles990": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mymcpserver-miles990": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mymcpserver-miles990": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mymcpserver-miles990": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mymcpserver-miles990"
]
}
}
}FAQ
What is the purpose of MyMcpServer?
It serves as an MCP server to manage and summarize notes.
How do I install MyMcpServer?
You can install it by running `npm install` after cloning the repository.
Can I use MyMcpServer on different operating systems?
Yes, it can be configured for both MacOS and Windows.