Overview
@servicestack/mcp is a TypeScript-based MCP server designed for exploring and invoking ServiceStack APIs, providing a simple notes system to demonstrate core MCP concepts.
To use the MCP server, install the dependencies, build the server, and configure it with Claude Desktop. 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 and storing them in server state. - Prompts for generating summaries of all stored notes.
- Creating and managing a personal notes system.
- Summarizing notes for quick reference.
- Exploring ServiceStack APIs through a structured interface.
Add to your AI client
Use these steps to connect @servicestack/mcp 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": {
"servicestack-mcp-servicestack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}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": {
"servicestack-mcp-servicestack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"servicestack-mcp-servicestack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"servicestack-mcp-servicestack": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"servicestack-mcp-servicestack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"servicestack-mcp-servicestack": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-servicestack-mcp-servicestack"
]
}
}
}FAQ
What programming language is used for @servicestack/mcp?
The server is built using TypeScript.
How do I install @servicestack/mcp?
You can install it by running `npm install` after cloning the repository.
Can I use @servicestack/mcp with other applications?
Yes, it can be integrated with applications like Claude Desktop by configuring the server settings.