drio
Open app

MCP Server

Source

This project is for MCP Servers and Agentic Modelling.

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a project designed for implementing the Model Context Protocol (MCP), which facilitates communication between agents in a structured manner.

To use MCP Server, you can interact with it by sending prompts related to weather information, and it will return the relevant data based on the input.

  • Implements the Model Context Protocol for agent communication - Provides weather information based on user prompts - Supports various test cases for different locations and units
  1. Retrieving real-time weather data for specific locations.
  2. Testing agent responses to various weather-related queries.
  3. Integrating with other applications that require weather information.

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

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

Claude Code

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

.mcp.json (project root)

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

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What kind of data can MCP Server provide?

MCP Server can provide weather information based on user queries.

Is MCP Server easy to integrate with other applications?

Yes! MCP Server is designed to be easily integrated with other systems that require weather data.

Can I customize the prompts for different types of queries?

Yes! You can customize the prompts to retrieve various types of weather information.