MCP server exposing an Outflow workspace's live architecture graph as context for AI coding agents
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP (Model Context Protocol) server that exposes a live Outflow architecture graph as context for AI coding agents β Claude Code, Claude Desktop, or any other MCP-compatible client. Lets an agent ask "what does this file depend on", "what breaks if I change this", or "did my last batch of edits introduce a circular dependency" against your workspace's real, currently-live graph.
It's a thin client over Outflow's existing /api/v1 REST API and the
workspace graph routes β no graph logic
is duplicated here.
This package is developed inside the main Outflow monorepo but published from a standalone public mirror: https://github.com/laurells/outflow-mcp β that's the repo MCP registries/crawlers point at, and where
npm publishruns from. Changes here get synced there before each release.
ofk_...)
is shown once β copy it..../workspace/<id>/...) or workspace settings.claude mcp add or the equivalent config file):
For local development, OUTFLOW_BASE_URL defaults to http://localhost:3000
if omitted.| Tool | Use it to ask |
|---|---|
find_node | Is this file tracked? What's its ID? |
list_nodes | What's deprecated / low health / a given type? |
get_dependencies | What does this file rely on? |
get_impact | What breaks if I change this file? (blast radius) |
find_path | How are these two files connected? |
get_architecture_health | What's the overall health grade and at-risk nodes? |
find_architecture_smells | Any circular deps, god nodes, or dead code right now? |
get_architecture_graph | Give me the whole graph at a zoom level. |
get_last_session_recap | What happened in my last coding session? |
All tools that take a path accept a partial match (e.g. "ApiClient" will
match src/ApiClient.ts) β you never need to know Outflow's internal
file::/method:: ID format. An ambiguous partial match returns an error
listing the candidates instead of guessing.
server/ or web/,
and has no build-time dependency on them. It only talks to a running
Outflow instance over HTTP using an API key, so it works equally well
pointed at localhost or a deployed instance.get_dependencies/get_impact and find_architecture_smells/find_path
call workspace graph routes that (as of this package's introduction) were
extended to accept Authorization: Bearer ofk_... alongside the existing
cookie-session auth β see server/src/graph/pathRouter.ts and
smellsRouter.ts.No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/outflow-mcp)<a href="https://allmcps.com/mcp/outflow-mcp"><img src="https://allmcps.com/api/badge/outflow-mcp?style=directory" alt="Outflow MCP on AllMCPs" /></a>