drio
Open app

MCP SERVER

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP SERVER is a basic server designed to assist with large language models (LLMs) by providing a framework for weather-related data processing.

To use MCP SERVER, clone the repository from GitHub, set up the server environment, and run the server command to start processing weather data.

  • Basic framework for handling weather data - Integration capabilities with large language models - Easy setup and deployment
  1. Processing real-time weather data for applications.
  2. Assisting LLMs in generating weather-related content.
  3. Providing a backend for weather forecasting tools.

Add to your AI client

Use these steps to connect MCP SERVER 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": {
    "weather-mcp-server-amit-singh-mobcoder": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-weather-mcp-server-amit-singh-mobcoder"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "weather-mcp-server-amit-singh-mobcoder": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-weather-mcp-server-amit-singh-mobcoder"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "weather-mcp-server-amit-singh-mobcoder": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-weather-mcp-server-amit-singh-mobcoder"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "weather-mcp-server-amit-singh-mobcoder": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-weather-mcp-server-amit-singh-mobcoder"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "weather-mcp-server-amit-singh-mobcoder": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-weather-mcp-server-amit-singh-mobcoder"
      ]
    }
  }
}

FAQ

What programming language is MCP SERVER built with?

MCP SERVER is built using JavaScript.

Is MCP SERVER free to use?

Yes! MCP SERVER is open-source and free to use.

How can I contribute to MCP SERVER?

You can contribute by submitting issues or pull requests on the GitHub repository.