Description

A complete, production-ready implementation of a Model Context Protocol server demonstrating OAuth 2.1, tools, prompts, resources.

Installation

npx -y systemprompt-mcp-server
npm install systemprompt-mcp-server
git clone https://github.com/systempromptio/systemprompt-mcp-server

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "systemprompt-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "systemprompt-mcp-server"
      ]
    }
  }
}