mcp-server-multitask
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-multitaskwhat's the weather in Madrid?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp_training
MCP server with weather, geocoding, and currency tools, and a console client that converses with an OpenAI model capable of using them.
Tú › ¿Qué tiempo hace en Madrid?
Modelo:
En Madrid hay 24,3 °C, humedad del 41 % y cielo despejado.
· get_lat_lon_from_city → get_current_weatherHow it works
main_client.py ──> OpenAI (Responses API) ──> [túnel] ──> main_server.py (MCP)
tu terminal el modelo decide 5 herramientas
qué herramientas usa sobre APIs públicasThe client does not execute the tools: it passes the public URL of the MCP server to OpenAI, and it is OpenAI that lists, calls, and chains them (city → coordinates → weather). That is why the server must be accessible from the internet: OpenAI connects from its servers, not from your machine.
Tools
Tool | Input | Output |
| city name | latitude and longitude |
| coordinates | temperature, humidity, sky condition |
| coordinates | 7-day forecast |
| two ISO codes | current exchange rate |
| amount + rate | converted amount |
Weather and geocoding use Open-Meteo (free, no key). Currency uses ExchangeRate-API, which does require a key, and supports 20 currencies (/monedas in the CLI).
Structure
config/settings.py configuración y logging (todo sale del .env)
server/ herramientas + clientes HTTP de las APIs externas
client/ cliente de OpenAI + interfaz de terminal
main_server.py arranca el servidor MCP
main_client.py arranca la conversaciónRelated MCP server: Python Weather MCP Server
Installation
Requires Python 3.11+. With uv (recommended):
git clone <url-del-repo>
cd mcp_training
uv syncOr with pip and a virtual environment:
python -m venv .venv
.venv\Scripts\activate # Windows; en Linux/macOS: source .venv/bin/activate
pip install -r requirements.txtConfiguration
Copy the example and fill in your keys:
cp .env.example .envOnly two variables are mandatory:
Variable | Purpose |
| exchange rates (free key here) |
| the client model |
And a third one, MCP_PUBLIC_URL, which is filled in the next step. Everything else (model, port, transport, timeouts, log level) has sensible defaults and is documented in .env.example.
Usage
You need three terminals: server, tunnel, and client.
1. Start the MCP server
uv run python main_server.pyIt listens on http://127.0.0.1:8002/mcp.
2. Publish the server with a tunnel
OpenAI needs a public URL to reach the server. With devtunnel:
devtunnel port create -p 8002 --allow-anonymous
devtunnel hostCopy the URL it prints (https://xxxxxxx-8002.euw.devtunnels.ms) and put it in the .env:
MCP_PUBLIC_URL=https://xxxxxxx-8002.euw.devtunnels.msAny tunnel works (ngrok, Cloudflare Tunnel…); the only thing that matters is that the URL is accessible from outside. The client adds /mcp on its own if it doesn't have it.
3. Launch the client
uv run python main_client.pyType your query and press Enter. The conversation has memory: after asking about Madrid you can simply say "and tomorrow?".
Convierte 100 USD a EUR
¿Cuál es el clima actual en Madrid?
Dame el pronóstico del tiempo para Nueva YorkCLI commands:
Command | What it does |
| tools, examples and commands |
| supported currency codes |
| exit (also Ctrl+C and Ctrl+D) |
Use the server without the client
The server is a standard MCP: it works with any compatible client. To connect it as a subprocess (Claude Desktop, Claude Code…) set MCP_TRANSPORT=stdio in the .env; thus neither the tunnel nor the port are needed.
Common issues
Symptom | Cause |
| missing |
The client doesn't start and warns about | missing tunnel URL in the |
The model says it cannot use the tools | the server or tunnel is down, or |
OpenAI quota error | balance exhausted; retrying won't fix it |
To see the details of each call (arguments, responses, URLs) set LOG_LEVEL=DEBUG in the .env. Logs go to stderr, so python main_client.py > charla.txt saves only the conversation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceA server that integrates the MCP library with OpenAI's API, allowing users to interact with various tools, such as the weather tool, through natural language queries.MIT
- AlicenseBqualityDmaintenanceEnables AI agents to fetch real-time weather data for any location using the OpenWeatherMap API. Demonstrates how to build a simple MCP server that exposes weather information as a tool for LLMs.1GPL 3.0
- Alicense-qualityDmaintenanceAn MCP server that enables AI assistants to call weather tools, read resources, and use prompt templates for live weather data integration.1,299MIT
- Flicense-qualityCmaintenanceAn MCP server that integrates ExchangeRate-API and Open-Meteo to provide currency conversion and weather tools, enabling natural language queries for exchange rates, weather, and geocoding.
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server for AI dialogue using various LLM models via AceDataCloud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jotarose/mcp-server-multitask'
If you have feedback or need assistance with the MCP directory API, please join our Discord server