simple_mcp
Simple MCP Server (Python)
이 프로젝트는 Python을 사용하는 최소한의 Model Context Protocol (MCP) 서버를 제공합니다. random_float라는 단일 도구를 노출하며, [0,1) 범위의 임의의 float 값을 반환합니다. 이 서버는 STDIO(기본값), HTTP, SSE 등 여러 전송 모드를 지원합니다.
로컬에서 실행
기본 (STDIO 전송)
uv run main.pyRelated MCP server: Math Calculator MCP Server
서버 환경 변수
변수 | 용도 | 기본값 |
APP_TRANSPORT | 전송 유형 (STDIO, HTTP, SSE) | STDIO |
APP_HOST | 서버 호스트 | 0.0.0.0 |
APP_PORT | 서버 포트 | 8000 |
Docker
이미지를 빌드하고 실행합니다:
docker build -t simple-mcp .다른 전송 방식을 사용하는 Docker
# HTTP transport
docker run --rm -p 8000:8000 -e APP_TRANSPORT=HTTP simple-mcp
# SSE transport
docker run --rm -p 8000:8000 -e APP_TRANSPORT=SSE simple-mcp
# Custom port
docker run --rm -p 9000:9000 -e APP_TRANSPORT=HTTP -e APP_PORT=9000 simple-mcp독립형 앱으로 테스트
Postman을 사용한 테스트
uv --directory <path_to_project_directory> run main.pyClaude Desktop을 사용한 테스트
{
"mcpServers": {
"simple_mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"<path_to_project_directory>",
"main.py"
]
}
}
}Docker 이미지로 테스트
Postman을 사용한 테스트
docker run --rm -i simple-mcpClaude Desktop을 사용한 테스트
{
"mcpServers": {
"simple_mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"simple-mcp"
]
}
}
}Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseAqualityDmaintenanceProvides calculator tools for mathematical operations, access to TypeScript SDK documentation, and meeting summary prompt templates through both stdio and SSE transports.8
- FlicenseDqualityDmaintenanceProvides basic mathematical operations (addition, subtraction, multiplication, division) through a calculate tool. Supports both stdio and HTTP/SSE transport modes.177
- FlicenseNot gradedqualityDmaintenanceA communication pipe and tool suite that enables AI models to interact with external systems through mathematical calculations, remote control, and data processing. It supports multiple transport protocols including stdio, SSE, and HTTP for flexible and extensible tool integration.
- FlicenseNot gradedqualityDmaintenanceProvides math and weather tools accessible via LangGraph agent using MCP protocol with stdio and streamable HTTP transports.1
Related MCP Connectors
16 AI-native tools with dual SSE + streamable-http transport. Free tier available.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
500+ deterministic tools for AI agents: math, conversion, validation, hashing, encoding, date/time.
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/oleksii-donets/simple_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server