{
"mcpServers": {
"zootycoon-basic-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 57 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Zootycoon Basic Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that enables AI assistants like Claude to explore and query PostgreSQL databases. Built with .NET 10 and featuring a Zoo-themed demo schema with Entity Framework Core.
This MCP server exposes three primary tools for database interaction:
The server uses stdio transport, making it compatible with Claude Desktop, MCP Inspector, and other MCP clients.
git clone https://github.com/YOUR_USERNAME/mcp-db-explorer.git
cd mcp-db-explorer
docker compose up -d
This starts PostgreSQL 16 on port 5433 with the following credentials:
mcpdbmcpusermcppassword# Apply database schema
dotnet run --project DbExplorerMcp -- --migrate
# Populate with sample Zoo data
dotnet run --project DbExplorerMcp -- --seed
dotnet build McpPgProject.slnx
dotnet run --project DbExplorerMcp
The server listens on stdin/stdout for JSON-RPC messages. This mode is intended for use by MCP clients, not direct terminal interaction.
npx @modelcontextprotocol/inspector dotnet run --project DbExplorerMcp
Opens a web interface at http://localhost:6274 where you can:
Add the following to your Claude Desktop config file:
Location: %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
{
"mcpServers": {
"db-explorer": {
"command": "dotnet",
"args": [
"run",
"--project",
"C:\\path\\to\\mcp-db-explorer\\DbExplorerMcp\\DbExplorerMcp.csproj"
]
}
}
}
Restart Claude Desktop. You can now ask Claude to query your database:
"List all tables in the database"
"Describe the Animals table"
"Show me all mammals in the zoo"
FirstMcp/
├── DbExplorerMcp/
│ ├── Data/
│ │ ├── ZooDbContext.cs # EF Core DbContext
│ │ └── ZooSeeder.cs # Sample data generation
│ ├── Models/
│ │ ├── Animal.cs # TPH inheritance (Mammal, Bird, Reptile)
│ │ ├── Zoo.cs
│ │ ├── Enclosure.cs
│ │ ├── MedicalRecord.cs
│ │ └── Keeper.cs
│ ├── Tools/
│ │ └── DatabaseTools.cs # MCP tool definitions
│ ├── Migrations/ # EF Core migrations
│ └── Program.cs # Application entry point
├── docker-compose.yml # PostgreSQL container config
├── init.sql # Initial database setup
└── README.md
Lists all user-defined tables in the public schema.
**