Remote Math Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Remote Math Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A simple Model Context Protocol (MCP) server with HTTP SSE (Server-Sent Events) transport that performs basic math operations on two numbers.
pip install -r requirements.txtpython server.pyThe server will start on http://localhost:3000
# Health check
curl http://localhost:3000/
# SSE endpoint (for MCP connection)
curl http://localhost:3000/ssenpm i -g @railway/clirailway login
railway init
railway uprender.yaml configurationhttps://your-app.onrender.com)heroku loginheroku create your-app-name
git push heroku mainheroku opendocker build -t math-mcp-server .docker run -p 3000:3000 math-mcp-serverOnce deployed, you can connect this MCP server to Claude Desktop or Claude Code.
Edit your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json
Add your server:
{
"mcpServers": {
"math-operations": {
"url": "https://your-deployed-url.com/sse"
}
}
}Replace https://your-deployed-url.com with your actual deployment URL.
Add to your mcp_config.json:
{
"mcpServers": {
"math-operations": {
"url": "https://your-deployed-url.com/sse"
}
}
}After connecting to Claude, try asking:
Claude will use your deployed MCP server to perform these calculations!
GET / - Health check and server infoGET /sse - SSE endpoint for MCP connectionsPOST /messages - Message handling endpointPORT - Server port (default: 3000)The server is built with:
https://your-url.com/ to see the health check/sse/sseMIT
Feel free to open issues or submit pull requests!
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.