Engineering Knowledge Graph MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Engineering Knowledge Graph MCP Serverquery context for export failure fixes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Fishbowl
Why Fishbowl
Engineering teams often solve the same problem twice: the important context is trapped in terminal scrollback, issue threads, and someone’s memory. Fishbowl keeps a project-local, reviewable record without pretending that every note is a proven fact.
Keep | Avoid |
Failed attempts, supporting evidence, decisions, fixes, and verification | Raw chat transcripts, credentials, full logs, or a cloud dependency |
A shared knowledge graph across a repository and its worktrees | Repeating expensive investigations from scratch |
Local SQLite, loopback-only browser access, and stdio MCP | Unreviewable autonomous “memory” |
Related MCP server: UseCortex MCP Server
What You Get
fishbowlCLI for registering projects, querying context, recording cases, and checking integrity.Persistent local daemon that owns one authenticated SQLite connection and local cache.
stdio MCP server for compatible coding agents.
Trace Bench, a read-only local browser for inspecting project activity.
Worktree-aware project aliases so parallel branches still share the right engineering context.
Bounded disk observations for regenerable artifact metadata. Fishbowl never deletes files automatically.
Quick Start
macOS / Linux
git clone https://github.com/nimocat/fishbowl.git
cd fishbowl
npm install
npm run build
npm link
fishbowl daemon install
fishbowl daemon doctorWindows (PowerShell)
Install Node.js 22 or newer and Git, then run:
git clone https://github.com/nimocat/fishbowl.git
Set-Location fishbowl
npm install
npm run build
npm link
fishbowl daemon install
fishbowl daemon doctorThe daemon runs only for the current user. No administrator account is required.
Register a Project
cd /absolute/path/to/your-project
fishbowl project register \
--root "$PWD" \
--name "My Project" \
--description "Local engineering knowledge"Copy the returned project ID and use it in the normal loop:
fishbowl query --project "<project-id>" "export failure"
fishbowl checkpoint \
--project "<project-id>" \
--task "Fix export failure" \
--outcome succeeded \
--summary "Moved composition work off the main actor and passed focused verification."Give Fishbowl to an Agent
Copy the Agent Quick Start Prompt into a coding agent. It tells the agent to:
Install Fishbowl locally and start its daemon.
Register or resolve the current repository.
Query relevant history before substantive work.
Save a concise, redacted checkpoint when the task ends.
For persistent integration, start the stdio MCP bridge:
node /absolute/path/to/fishbowl/dist/cli/main.js mcp --stdioSee the ready-to-copy MCP client configurations. The process writes protocol frames to stdout, so do not wrap it in commands that print banners.
The Engineering Loop
Preflight -> Query prior knowledge -> Implement -> Verify -> Record a redacted checkpointFishbowl keeps records distinct so the graph remains useful under review:
Record | Meaning |
Problem | The decision, incident, or task being investigated |
Attempt | A concrete approach and its observed outcome |
Root Cause | An evidenced causal explanation, not a guess |
Solution | The adopted change, scope, and limitations |
Verification | The build, test, measurement, or human review that supports it |
Local-First by Design
CLI / MCP client
|
v
Fishbowl daemon (current user, authenticated)
|
+-- SQLite knowledge store
+-- bounded raw command-log references
+-- Trace Bench on 127.0.0.1 onlyNo account, hosted service, cloud sync, or telemetry is required.
Durable graph text is recursively secret-redacted and bounded.
Raw command logs remain local, retention-bounded, and excluded from graph exports.
Existing repositories are never modified merely by being registered.
Read SECURITY.md before sharing any data directory or raw log collection.
Upgrade from Engineering Knowledge Graph
The first Fishbowl launch migrates the legacy local database, WAL files, token, and raw logs into the Fishbowl data directory. Existing graph exports remain import-compatible; newly created exports use the fishbowl format marker.
Run once after upgrading:
fishbowl daemon installDevelopment
npm install
npm run typecheck
npm test
cargo test --workspace
npm run buildSee CONTRIBUTING.md for the contribution workflow and docs/ for architecture, protocol, migration, and recovery notes.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nimocat/fishbowl'
If you have feedback or need assistance with the MCP directory API, please join our Discord server