MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP Tools - Web interface for managing and invoking Model Context Protocol tools

创建于 10/25/2025
更新于 about 2 months ago
Repository documentation and setup instructions

uvicorn app:app --host 0.0.0.0 --port 8080

curl -X POST http://localhost:8080/tools/get_system_metrics

curl -X POST http://localhost:8080/tools/extract_pdf_text
-H "Content-Type: application/json"
-d '{"file_path":"/home/user/sample.pdf"}'

curl -X GET http://localhost:8080/tools/metadata

uvicorn app:app2 --host 0.0.0.0 --port 8181 &

curl -X GET http://localhost:8181/mcp/tools/metadata

curl -X POST http://localhost:8080/tools/get_system_metrics
-H "Content-Type: application/json"
-d '{}'

ps aux | grep uvicorn

curl -X POST http://localhost:8181/mcp/tools/invoke
-H "Content-Type: application/json"
-d '{ "tool": "get_system_metrics", "args": {} }'

curl -X GET http://localhost:8080/mcp/tools/metadata

curl -X POST http://localhost:8080/mcp/tools/invoke
-H "Content-Type: application/json"
-d '{ "tool": "get_weather", "args": { "location": "Amsterdam" } }'

快速设置
此服务器的安装指南

安装包 (如果需要)

uvx mcp_tools

Cursor 配置 (mcp.json)

{ "mcpServers": { "ocdondev-mcp-tools": { "command": "uvx", "args": [ "mcp_tools" ] } } }