drio
Open app

ModelContextProtocolServer

Source

MCP server to provide tools

Catalog onlyCatalog onlySTDIO

Overview

ModelContextProtocolServer (MCP) is a server that provides tools for various functionalities, including a calculator and weather information retrieval.

To use MCP, you can connect to the server via SSE stream or stdio, and send requests to utilize its tools through JSON-RPC.

  • Provides a basic calculator tool for arithmetic operations. - Offers a weather tool to get current weather information based on location. - Supports JSON-RPC for communication with the server.
  1. Performing basic arithmetic calculations.
  2. Retrieving current weather data for specific locations.
  3. Integrating with other applications that require mathematical or weather-related functionalities.

Add to your AI client

Use these steps to connect ModelContextProtocolServer 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": {
    "modelcontextprotocolserver-innobridge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modelcontextprotocolserver-innobridge"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "modelcontextprotocolserver-innobridge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modelcontextprotocolserver-innobridge"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "modelcontextprotocolserver-innobridge": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modelcontextprotocolserver-innobridge"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "modelcontextprotocolserver-innobridge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modelcontextprotocolserver-innobridge"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "modelcontextprotocolserver-innobridge": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-modelcontextprotocolserver-innobridge"
      ]
    }
  }
}

FAQ

What tools are available in MCP?

MCP currently includes a calculator and a weather tool.

How do I connect to the MCP server?

You can connect using curl commands provided in the documentation.

Is there a limit to the number of requests I can make?

There is no specified limit, but performance may vary based on server load.