servicestack-mcp

ServiceStack/servicestack-mcp

3.1

If you are the rightful owner of servicestack-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

ServiceStack MCP Server for exploring and invoking ServiceStack APIs

The @servicestack/mcp is a TypeScript-based Model Context Protocol (MCP) server designed to explore and invoke ServiceStack APIs. It implements a simple notes system to demonstrate core MCP concepts. The server allows users to manage resources representing text notes, create new notes, and generate summaries of existing notes. Each note is accessible via a unique URI and includes metadata for easy management. The server supports plain text mime types for straightforward content access, making it a versatile tool for developers looking to integrate MCP functionalities into their applications.

Features

  • Resources: List and access notes via `note://` URIs, each with a title, content, and metadata.
  • Tools: `create_note` tool for creating new text notes with title and content.
  • Prompts: `summarize_notes` prompt for generating summaries of all stored notes.

Usages

usage with Claude Desktop

{
  "mcpServers": {
    "@servicestack/mcp": {
      "command": "/path/to/@servicestack/mcp/build/index.js"
    }
  }
}

Tools

  1. create_note

    Create new text notes with title and content, storing them in server state.