drio
Open app

MCP Servers Schemas

Source

This document provides a list of different MCP servers. For each server, we provide a schema definition that includes the latest basic information and tool definitions.

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers Schemas is a comprehensive document that provides a list of various MCP servers along with their schema definitions, including the latest basic information and tool definitions.

Users can access the document or visit the website to quickly retrieve the latest MCP server definitions without needing to install any MCP server locally.

  • Quick access to the latest MCP server definitions. - No local installation required. - Easy retrieval of up-to-date server and tool information. - Detailed schema definitions available on the website.
  1. Accessing the latest definitions for various MCP servers.
  2. Understanding the schema and tool definitions for integration purposes.
  3. Facilitating quick reference for developers and users working with MCP servers.

Add to your AI client

Use these steps to connect MCP Servers Schemas 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-servers-schemas-oslook": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-schemas-oslook"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-schemas-oslook": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-schemas-oslook"
      ]
    }
  }
}

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-servers-schemas-oslook": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-schemas-oslook"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-schemas-oslook": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-schemas-oslook"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-schemas-oslook": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-schemas-oslook"
      ]
    }
  }
}

FAQ

Can I access MCP server definitions without installing anything?

Yes! The document and website provide all necessary information without requiring local installation.

Is there a way to contribute to the MCP Servers Schemas?

Contributions can be made through the GitHub repository where the project is hosted.