MCP Server
@Cavumnigrum
关于 MCP Server
Test MCP server that can do several things
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"test_MCPServer": {
"command": "python",
"args": [
"-m",
"venv",
"venv"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is MCP Server?
MCP Server is a Python-based MCP (Model Context Protocol) server that provides the current USD exchange rate, weather forecast, and news from the last week. It is intended for developers who want to integrate these external data sources into MCP-compatible applications.
How to use MCP Server?
Clone the repository, create a Python virtual environment, install dependencies, and set up API keys for exchangerate-api, openweathermap, and newsapi in a .env file. Run the server with python mcp_server.py – it becomes available at http://localhost:8000. A self‑written client can be launched with python mcp_client.py. Docker deployment is also supported via docker-compose.
Key features of MCP Server
- Provides current USD exchange rate from exchangerate-api.com.
- Delivers weather forecast from openweathermap.org.
- Supplies news articles from the last week via newsapi.org.
- Written in Python and follows the MCP protocol.
- Includes a test suite runnable with
pytest. - Docker‑Compose files for containerized server and client.
Use cases of MCP Server
- Fetch the live USD exchange rate for a finance dashboard.
- Get a weather forecast for a location using an MCP client.
- Retrieve recent news headlines for aggregation or analysis.
- Serve as a learning example for building an MCP server in Python.
- Deploy a lightweight data gateway using Docker containers.
FAQ from MCP Server
What data sources does MCP Server integrate?
It uses exchangerate-api.com for USD exchange rates, openweathermap.org for weather forecasts, and newsapi.org for recent news articles.
What API keys are required?
You need to register and obtain API keys from exchangerate-api.com, openweathermap.org, and newsapi.org. Place them in a .env file following the .env.example template.
How do I start the server?
After installing dependencies and configuring keys, run python mcp_server.py. The server will listen on http://localhost:8000.
Is there a client to interact with the server?
Yes, a self‑written client is provided. Run python mcp_client.py and follow the in‑program instructions to use it.
Can I run MCP Server with Docker?
Yes. The repository includes Docker and docker-compose files. Use docker-compose up -d server to start the server and docker-compose run --rm client to run the client interactively.
开发工具 分类下的更多 MCP 服务器
Minecraft MCP Server
yuniko-softwareA Minecraft MCP Server powered by Mineflayer API. It allows to control a Minecraft character in real-time, allowing AI assistants to build structures, explore the world, and interact with the game environment through natural language instruction
OpenSumi
opensumiA framework helps you quickly build AI Native IDE products. MCP Client, supports Model Context Protocol (MCP) tools via MCP server.
Code Index MCP
johnhuang316A Model Context Protocol (MCP) server that helps large language models index, search, and analyze code repositories with minimal setup
sentry-mcp
getsentryAn MCP server for interacting with Sentry via LLMs.
JetBrains MCP Proxy Server
JetBrainsA model context protocol server to work with JetBrains IDEs: IntelliJ, PyCharm, WebStorm, etc. Also, works with Android Studio
评论