drio
Open app

Model Context Protocol specification

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP_server_Specs is a repository that contains the specification and protocol schema for the Model Context Protocol, designed to standardize interactions in model contexts.

To use MCP_server_Specs, refer to the TypeScript schema defined in the repository or utilize the JSON Schema for compatibility with various applications.

  • Comprehensive specification for the Model Context Protocol - Available in both TypeScript and JSON Schema formats - Clear guidelines for contributing to the project
  1. Standardizing communication between different AI models.
  2. Facilitating interoperability in machine learning applications.
  3. Providing a framework for developers to implement model context protocols.

Add to your AI client

Use these steps to connect Model Context Protocol specification 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": {
    "mcp-server-specs-tizzle716": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

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": {
    "mcp-server-specs-tizzle716": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-specs-tizzle716": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-specs-tizzle716": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-specs-tizzle716": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-specs-tizzle716": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-specs-tizzle716"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol?

The Model Context Protocol is a standard for defining how models interact within a given context, ensuring consistency and compatibility.

How can I contribute to this project?

You can contribute by following the guidelines in the CONTRIBUTING.md file available in the repository.

What license is this project under?

This project is licensed under the MIT License.