Mcp Servers — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Servers (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 collection of Model Context Protocol servers for databases, remote access, automation, and developer tools. Each server works standalone with any MCP-compatible client.
| Server | Package | Description |
|---|---|---|
| PostgreSQL MCP | mapeg-postgres-mcp | Query, explore, and analyze PostgreSQL databases with natural language support |
| Oracle MCP | mapeg-oracle-mcp | Oracle 11g–23ai with PL/SQL source, DBMS_OUTPUT, and auto version detection |
| Server | Package | Description |
|---|---|---|
| n8n Chatbot MCP | n8n-chatbot-mcp | Turn any n8n Chat Trigger webhook into an MCP tool with auto-discovery |
| GIB API MCP | gib-api-mcp | Turkish Revenue Administration (GIB) e-invoice API integration |
| Server | Package | Description |
|---|---|---|
| SSH MCP | mcp-server-ssh | Remote command execution over SSH with session logging |
| Asger Terminal MCP | asger-terminal-mcp | Interactive web terminal with screenshot and OCR support |
| Server | Package | Description |
|---|---|---|
| Docusaurus MCP | docusaurus-mcp | Search, browse, and read any Docusaurus documentation site |
| Server | Package | Description |
|---|---|---|
| Gemini Reviews MCP | gemini-reviews-mcp | Fetch Gemini Code Assist PR reviews from GitHub |
| Agent Chat MCP | agent-chat-mcp | Multi-room chat for Claude Code agent instances |
Install any server with a single command — no virtual environment needed:
# Python servers
uvx mapeg-postgres-mcp
uvx mapeg-oracle-mcp
uvx n8n-chatbot-mcp
uvx docusaurus-mcp
uvx gemini-reviews-mcp
uvx mcp-server-ssh
uvx agent-chat-mcp
# Node.js servers
npx -y asger-terminal-mcp
npx -y gib-api-mcpclaude mcp add postgres \
-e DB_HOST=localhost \
-e DB_PORT=5432 \
-e DB_NAME=mydb \
-e DB_USER=postgres \
-e DB_PASSWORD=secret \
-- uvx mapeg-postgres-mcpAdd to your config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
},
"oracle": {
"command": "uvx",
"args": ["mapeg-oracle-mcp"],
"env": {
"ORACLE_CONNECTION_STRING": "User Id=myuser;Password=mypass;Data Source=host:1521/service"
}
},
"my-chatbot": {
"command": "uvx",
"args": ["n8n-chatbot-mcp"],
"env": {
"N8N_CHATBOT_URL": "https://n8n.example.com/webhook/my-bot/chat"
}
}
}
}Add to ~/.cursor/mcp.json using the same format as Claude Desktop.
Add to Windsurf MCP config using the same format as Claude Desktop.
Add to your VS Code settings (JSON):
"mcp": {
"servers": {
"postgres": {
"type": "stdio",
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}Add to ~/.gemini/settings.json:
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}Add to ~/.copilot/mcp-config.json:
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["mapeg-postgres-mcp"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_NAME": "mydb",
"DB_USER": "postgres",
"DB_PASSWORD": "secret"
}
}
}
}Add to ~/.codex/config.toml:
[mcp_servers.postgres]
command = "uvx"
args = ["mapeg-postgres-mcp"]
[mcp_servers.postgres.env]
DB_HOST = "localhost"
DB_PORT = "5432"
DB_NAME = "mydb"
DB_USER = "postgres"
DB_PASSWORD = "secret"# Python servers
cd mapeg-postgres-mcp
pip install -e .
# Node.js servers
cd asger-terminal-mcp
npm installDatabase MCP servers include a built-in query_logger module that writes to a shared SQLite database at ~/.local/share/mapeg-mcp/query_logs.db. Each log entry includes:
localhost:5432/mydb)The get_query_history tool lets agents review their own recent queries, scoped to their database and workspace.
Monitor all database queries in real-time:
cd query_dashboard
pip install flask
python app.py
# Open http://localhost:5555Supports filtering by server type, database, and workspace.
READ_ONLY=true for database servers when write access isn't needed.env files are gitignoredgit checkout -b feature/my-feature)MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.