Simple Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Simple Mcp (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 Model Context Protocol (MCP) server that provides tools for interacting with simple's data, including customer reports, calendar events, and company information.
cd simple-mcp yarn installCreate a .env file in the root directory based on .env.example:
cp .env.example .envConfigure the following environment variables in your .env file:
DB_HOST=localhost
DB_PORT=5432
DB_NAME=postgres
DB_USER=postgres
DB_PASSWORD=your_passwordBuild the TypeScript project:
yarn buildThis will:
build/ directoryTo run the server directly (for testing):
node build/index.jsThe server runs on stdio (standard input/output) and communicates via the MCP protocol.
To use this MCP server with Cursor, add it to your Cursor settings:
{
"mcpServers": {
"simple-mcp": {
"command": "node",
"args": ["/absolute/path/to/simple-mcp/build/index.js"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "postgres",
"DB_USER": "postgres",
"DB_PASSWORD": "your_password"
}
}
}
}Replace /absolute/path/to/simple-mcp with the actual absolute path to this project directory.
The server communicates via stdio using the MCP protocol. Any MCP-compatible client can connect to it by running:
node build/index.jsThe server provides the following tools:
simple-mcp/
├── src/
│ ├── index.ts # Main entry point
│ ├── server.ts # MCP server setup
│ ├── tools/ # Tool implementations
│ └── utils/ # Utility functions (database, data generators)
├── build/ # Compiled JavaScript output
├── package.json
├── tsconfig.json
└── README.mdsrc/build/yarn build after making changes to TypeScript files.env are correctyarn installchmod +x build/index.js~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.