Mcp Server Boilerplate — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Server Boilerplate (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 TypeScript MCP (Model Context Protocol) server using @modelcontextprotocol/sdk.
This project demonstrates how to create a basic MCP server with tools that can be accessed by MCP clients like Claude Desktop, VS Code with GitHub Copilot, or other MCP-compatible applications.
pnpm installRun the server in development mode:
pnpm devCompile TypeScript to JavaScript:
pnpm buildStart the compiled server:
pnpm startThe server will start on http://localhost:3000/mcp.
Add this to your MCP configuration in VS Code:
{
"mcpServers": {
"simple-mcp-server": {
"url": "http://localhost:3000/mcp",
"type": "http"
}
}
}Test your server with the MCPJam:
pnpx @mcpjam/inspector@latest --port 4000Then create a new server with your MCP url.
Performs basic arithmetic operations.
Parameters:
operation (enum): One of "add", "subtract", "multiply", "divide"a (number): First numberb (number): Second numberExample:
{
"operation": "add",
"a": 5,
"b": 3
}This server uses:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.