Overview
MCP Servers Schemas is a project that provides a comprehensive list of different MCP servers along with their schema definitions, enabling users to access the latest server information without local installation.
Users can visit the MCP website to review the schema definitions and obtain up-to-date server information and tool definitions.
- Quick access to the latest MCP server definitions. - No need for local installation of MCP server. - Easy retrieval of up-to-date server and tool information. - Comprehensive schema definitions available on the website.
- Accessing real-time information from various MCP servers.
- Integrating with different tools and services without local setup.
- Reviewing schema definitions for better understanding of server functionalities.
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": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}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": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"oslook-mcp-servers-schemas-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-oslook-mcp-servers-schemas-mcp-mirror"
]
}
}
}FAQ
Can I access all MCP server definitions online?
Yes! All MCP server definitions are available on the [MCP website](https://mcp.oslook.com).
Is there a need to install anything locally to use MCP Servers Schemas?
No! Users can access all information directly from the website without local installation.
How often is the server information updated?
The server information is regularly updated to ensure users have access to the latest definitions.