Direct Database Access Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Direct Database Access 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.
and save the queries to execute later.
- src/
- database/ // Database connection and utils
- tools/ // Tools implementation
- repositories/ // Repositories implementationThis MCP server supports both modern and legacy transport protocols:
For new implementations, use the /mcp endpoint as it provides better performance and reliability.
Install Wrangler globally to manage your Cloudflare Workers:
npm install -g wranglerLog in to your Cloudflare account:
wrangler loginThis will open a browser window where you can authenticate with your Cloudflare account.
Clone the repo directly & install dependencies: pnpm install.
Before running the MCP server, you need to configure several environment variables for authentication and database access.
cp .dev.vars.example .dev.vars.dev.vars: ACCESS_TOKEN=random_value_to_use_as_api_key
DATABASE_URL=postgresql://username:password@localhost:5432/database_name wrangler devThis makes the server available at http://localhost:8792
#### Deploy Deploy the MCP server to make it available on your workers.dev domain
wrangler deployYou can access the remote MCP server from Kilo Code and Vscode using the following configuration:
// Kilocode MCP
{
"mcpServers": {
"direct-database-mcp-server-prod": {
"url": "url_cloudflare_workers_generated_after_deployed/sse",
"headers": {
"api-key": "Bearer same_value_of_ACCESS_TOKEN"
}
}
}
}
// Vscode MCP
{
"servers": {
"direct-database-mcp-server-prod": {
"url": "https://my-mcp-server.tiagorosadacost.workers.dev/sse",
"headers": {
"api-key": "Bearer 701cdccb-e605-423f-a778-66ed0698117f"
}
}
}
}
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.