AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified Apache-2.0 Self-run

Flitzpiepe93 Mcp Server

mcp-flitzpiepe93-mcp-server · by flitzpiepe93

A proof-of-concept MCP server: AI agents query a database through scoped, audited tools instead of raw SQL

— No reviews yet
0 installs
26 views
0.0% view→install

Install

$ agentstack add mcp-flitzpiepe93-mcp-server

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ● Environment & secrets Used
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-flitzpiepe93-mcp-server)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Flitzpiepe93 Mcp Server? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

MCP Database Server for AI Agents

> Proof of concept. A time-boxed exploration of secure agent–data > boundaries — designed to run locally, not a production service. Cloud > deployment and agent lifecycle are designed in the > docs but intentionally left > unimplemented; the PoC's job is to prove the boundaries work end to end.

An MCP server that gives AI agents controlled, audited access to a database through business-level tools instead of raw SQL. Every call is authenticated, authorized against tool-level scopes, and logged — so you always know which agent read what, and when.

The public Titanic dataset (SQLite) stands in for sensitive data (think insurance records): that sensitivity is what motivates the authentication, access control, and auditability. The one implemented tool, get_survival_rate, returns survival figures grouped by passenger class or sex.

Run it locally

Requirements: Docker (incl. Compose v2) and make.

cp .env.example .env   # local config (dev defaults, no real secrets)
make up                # start Keycloak + MCP server
make run-client        # run the example agent once against the server

The client fetches a token from Keycloak, calls the tool, and prints the result — while the server's audit middleware logs every call with agent, tool, and parameters. Run make with no argument to list every command.

Repository layout

server/     MCP server: the tool, auth, audit middleware, and the
            repository layer that isolates it from the database
client/     Example agent that fetches a token and calls the tool once
keycloak/   Realm export (client, scopes, audience mapper) imported on startup
data/       Checked-in SQLite Titanic dataset, so the demo needs zero setup
docs/       Full design write-up, published to GitHub Pages via mkdocs

Inside server/src/server/, app.py wires everything together, auth.py and audit.py cover authentication and the audit trail, and repository/ holds the swappable data-access layer (sql.py for real use, memory.py for tests). Root-level files (docker-compose.yml, Makefile, .env.example) orchestrate the local stack.

Dataset

The Titanic dataset (891 passengers) comes from seaborn's built-in titanic dataset (BSD-licensed). It is checked in as a small SQLite file (data/titanic.db) so the demo runs with zero setup.


Originally built as a time-boxed coding challenge, then reworked into this portfolio piece.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.