Server data from the Official MCP Registry
A Test MCP server that provides tools, promts and resources
A Test MCP server that provides tools, promts and resources
This is a well-structured minimal MCP server with clean code and appropriate security posture. The server exposes simple utility tools (random number generation, timing, prompts, and resources) with no authentication requirements, which is reasonable for its limited, non-sensitive functionality. Permissions are narrowly scoped to the server's purpose. Minor code quality observations do not warrant score reduction. Supply chain analysis found 5 known vulnerabilities in dependencies (1 critical, 3 high severity).
3 files analyzed · 8 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: APP_HOST
Environment variable: APP_PORT
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-oleksii-donets-simple-mcp-http": {
"env": {
"APP_HOST": "your-app-host-here",
"APP_PORT": "your-app-port-here"
},
"args": [
"simple-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
This project provides a minimal Model Context Protocol (MCP) server using Python. It exposes a single tool random_float that returns a random float in [0,1). The server supports multiple transport modes: STDIO (default), HTTP, and SSE.
uv run main.py
| Variable | Purpose | Default |
|---|---|---|
| APP_TRANSPORT | Transport type (STDIO, HTTP, SSE) | STDIO |
| APP_HOST | Server host | 0.0.0.0 |
| APP_PORT | Server port | 8000 |
Build the image and run:
docker build -t simple-mcp .
# 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
uv --directory <path_to_project_directory> run main.py
{
"mcpServers": {
"simple_mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"<path_to_project_directory>",
"main.py"
]
}
}
}
docker run --rm -i simple-mcp
{
"mcpServers": {
"simple_mcp": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"simple-mcp"
]
}
}
}
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.