drio
Open app

MCP Server - Test Project

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a test project that provides real-time data on currency exchange rates, weather forecasts, current weather conditions, and weekly news summaries through an API.

To use MCP Server, clone the repository, set up a virtual environment, install dependencies, and run the server. You can then access the API via Swagger UI.

  • Retrieves current dollar exchange rates. - Provides weather forecasts and current weather for specified cities. - Offers weekly news summaries. - Data is returned in JSON format.
  1. Integrating real-time currency data into applications.
  2. Providing weather information for travel apps.
  3. Aggregating news for content management systems.

Add to your AI client

Use these steps to connect MCP Server - Test Project 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": {
    "test-mcp-server-nemono0ne": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-test-mcp-server-nemono0ne"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "test-mcp-server-nemono0ne": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-test-mcp-server-nemono0ne"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

Is the API free to use?

Yes, the project uses free APIs for data retrieval, but they may stop working at any time.

How can I get my own API key?

You can register on the respective API provider's website (OpenWeatherMap for weather and NewsAPI for news) to obtain your own API key.

What should I do if the API stops working?

If the API stops working, you can replace the API key in the project with your own.