mcp_server
@fulong98
关于 mcp_server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-server-fulong98": {
"command": "docker",
"args": [
"build",
"-t",
"yourusername/runpod-python-executor:latest",
"."
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is mcp_server?
mcp_server enables AI assistants (like Cline) to execute Python code on RunPod serverless infrastructure using the Model Context Protocol (MCP). It consists of a RunPod Serverless API that runs the code and an MCP server that provides a standardized interface for the assistant.
How to use mcp_server?
After deploying a RunPod serverless endpoint and obtaining its ID, install the Python dependencies (pip install mcp requests), set the RUNPOD_API_KEY and RUNPOD_ENDPOINT_ID environment variables, and run the MCP server script. Connect your AI assistant (e.g., Cline) to the MCP server, then use the execute_python_code tool to run code and check_runpod_status to verify connectivity.
Key features of mcp_server
- Execute Python code on RunPod serverless infrastructure
- Standardized MCP interface for AI assistants
- Returns stdout, stderr, and exit code
- Pre‑built Docker image with common data science libraries
- Isolated container execution for security
Use cases of mcp_server
- Run Python scripts from an AI assistant without local resources
- Generate plots and perform data analysis in a serverless environment
- Offload computational tasks to the cloud via a natural language interface
- Execute code that requires libraries not available on the assistant’s host
FAQ from mcp_server
Why use serverless instead of creating full pods?
RunPod does not provide a direct API to retrieve logs from pods, making it hard to capture output. Serverless functions charge only for actual execution time and avoid persistent connection complexity.
What are the limitations of the serverless approach?
Cold start latency occurs on first execution. Each run starts with a fresh environment (no persistent storage). Resource constraints (CPU, memory, disk) are tighter than dedicated pods, and GPU access is more limited and typically more expensive.
Is my code execution secure?
Code runs in an isolated container with a limited execution time to prevent resource abuse. Additional security measures should be implemented for production use.
What should I do if code execution times out?
Your code might be too complex or contain an infinite loop. Check the execution timeout setting (MAX_EXECUTION_TIME) and ensure your logic terminates promptly.
How can I test the RunPod endpoint before using the MCP server?
Use a curl command like: curl -X POST https://api.runpod.io/v2/{endpoint_id}/runsync -H 'Content-Type: application/json' -H 'Authorization: Bearer YOUR_RUNPOD_API_KEY' -d '{"input": {"code": "print(\"Hello, World!\")"}}'.
其他 分类下的更多 MCP 服务器
FastMCP v2 🚀
jlowin🚀 The fast, Pythonic way to build MCP servers and clients.
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.
Activepieces
activepiecesAI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
评论