Server data from the Official MCP Registry
Deterministic, persistent graph server for tracking workflow state, decisions, and blockers.
Deterministic, persistent graph server for tracking workflow state, decisions, and blockers.
This is a well-architected MCP server for workflow state management with proper authentication via environment variables, deterministic operations, and appropriate permission scoping. The codebase demonstrates solid security practices with no evidence of malicious patterns, data exfiltration, or dangerous operations. Minor code quality observations around broad exception handling and input validation do not materially affect security. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
3 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: STATE_MEMORY_MCP_DIR
Environment variable: STATE_MEMORY_MCP_PROJECT
Environment variable: STATE_MEMORY_MCP_LOG_LEVEL
Environment variable: STATE_MEMORY_MCP_DEFAULT_BRANCH
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-putervision-state-memory-mcp": {
"env": {
"STATE_MEMORY_MCP_DIR": "your-state-memory-mcp-dir-here",
"STATE_MEMORY_MCP_PROJECT": "your-state-memory-mcp-project-here",
"STATE_MEMORY_MCP_LOG_LEVEL": "your-state-memory-mcp-log-level-here",
"STATE_MEMORY_MCP_DEFAULT_BRANCH": "your-state-memory-mcp-default-branch-here"
},
"args": [
"-y",
"@putervision/state-memory-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
@putervision/state-memory-mcp is a zero-infrastructure, deterministic Model Context Protocol (MCP) server that provides AI agents with a structured, persistent graph for tracking workflow state—tasks, decisions, artifacts, plans, blockers, and their semantic relationships. Official Documentation & Interactive Demos: statememorymcp.com
By using @putervision/state-memory-mcp, your AI coding assistant (such as Cursor, Claude Code, Gemini, or Copilot) maintains long-term project coherence, manages complex dependencies, and audits architectural decisions across sessions.
Prerequisites: Node.js >= 18.0.0
# Install globally
npm install -g @putervision/state-memory-mcp
# Navigate to your project directory
cd your-project
# Initialize — creates .state-memory-mcp/, updates .gitignore,
# scaffolds IDE instructions and MCP configs for Cursor, Claude, Windsurf, etc.
state-memory-mcp init
# Done! Restart your IDE or Agent Manager (Cursor, VS Code, Antigravity, Claude) to activate.
# Run directly via binary (after global install)
state-memory-mcp run
# Or install as a project dev dependency
npm install --save-dev @putervision/state-memory-mcp
.state-memory-mcp/) or globally.natural_language_query), multi-agent optimistic CAS concurrency & blackboard store (post_blackboard, read_blackboard), atomic compound feature decomposition (plan_and_decompose_feature, post_mortem_from_session), time-travel history recovery (get_state_at_timestamp, revert_to_timestamp), cross-memory validation & auto-healing (validate_memory_references), velocity & burndown time-series analytics (velocity_analytics, burndown_chart), bidirectional issue sync (export_issues, import_issues), VCS branch sync & merge resolution (vcs_branch_sync, vcs_merge_resolution), automated compaction & historical archiving (compact_graph, archive_completed_nodes), health doctor & watcher (doctor_report, watch_graph_changes), value analytics, database administration utilities, template scaffolding, agent QoL context tools, session lifecycle tracking, event logging, cryptographic SHA-256 session audit verification (verify_audit_chain), state rollback/undo, compound workflow tools (bootstrap_session, complete_task, batch_create_nodes, batch_add_edges), selective field projections (fields), self-healing graph repair (auto_fix), dynamic resources, and workflow prompts.3d-force-graph / Three.js.state-memory-mcp init scaffolds the data directory, .gitignore, IDE instruction files, and MCP configs for all major editors.vision-memory-mcp for unified text+visual trajectory tracking, automatic visual cache grounding, and visual state verification for UI tasks.AI coding agents (like Cursor, Gemini, Claude, and Copilot) operate within strict context window and performance limits. Storing your project's workflow state in the chat history or forcing agents to search files repeatedly is inefficient. state-memory-mcp solves this by introducing a structured, external state engine:
get_project_summary or find_blockers in milliseconds. They immediately understand current blockers, goals, and outstanding tasks, reducing end-to-end execution latency by 67% to 74% in multi-agent workflows.state-memory-mcp, agents keep this state offloaded in a local SQLite database, fetching only relevant subgraphs when needed. This reduces context bloat and API costs by 128× to 462× when utilizing compiled trajectory models.state-memory-mcp graph queries use deterministic SQL/CTE traversals. This eliminates the "first-hop" retrieval error that propagates cascading hallucinations down multi-agent execution pipelines.blocks, produces, depends_on). The server automatically validates dependencies and rejects circular reference loops, maintaining a clean, easily-navigable project structure.state-memory-mcp acts as a local blackboard (Shared Context Store) where all subagents publish decisions, tasks, and blocker updates, ensuring coordination-level alignment without passing massive chat histories. This limits central LLM invocations to a constant $O(1)$ (Plan + Summarize) instead of scaling linearly $O(N)$ with task steps.decision_trail, reuse established subgraphs, avoid repeating past failures (recorded as blockers/observations), and instantly query context snapshots to understand code rationale. The more context is recorded, the less onboarding/discovery overhead is required for new agents, creating a compounding productivity flywheel.*Disclaimer: Latency reduction percentages and token savings ratios cited above are illustrative metrics derived from controlled context-store research models. Actual performance improvements, token savings, and cost reductions vary depending on model provider choice, prompt frequency, and individual workflow complexity.
state-memory-mcp models your development workspace as a directed acyclic graph (DAG) where nodes represent development objects and edges represent their semantic relationships.
task: Incremental items of work or coding TODOs (Status: pending, in_progress, done, blocked, cancelled).decision: Architectural choices, pattern selections, and rationale (Status: active, accepted, deprecated, rejected).artifact: Coding output, documentation, or schemas generated (Status: current, draft, deprecated).plan: High-level development specifications and roadmaps containing milestones (Status: active, draft, completed, archived).milestone: Progress checkpoints representing a grouped set of related tasks (Status: upcoming, in_progress, done, delayed).blocker: Impediments or bugs preventing tasks from being completed (Status: active, resolved, mitigated).observation: Contextual findings, codebase notes, or runtime constraints recorded by the agent (Status: active, archived).visual_state: Represents a visual UI screenshot checkpoint via Dual MCP Synergy (Status: active, archived, invalidated).Nodes are linked together to represent workflow connections:
depends_on: Declares that a task or milestone depends on another.blocks: Connects a blocker to the task/milestone it stalls.produces: Connects a task or milestone to the file artifact it generates.references: Relates nodes to other source files or documentation.updates / contradicts: Traces the historical chain of decisions or flags conflicting requirements.part_of / child_of: Establishes hierarchical groupings (e.g., tasks belonging to milestones, milestones in plans).implements / decided_in: Links tasks/artifacts to their design decisions or plans.extends / modifies: Git commit trace relationships.renders_state / blocked_by_visual_state / verifies_visual_state: Visual memory cross-linking relationships.Note: Cycle detection is automatically enforced. If an agent tries to link nodes in a loop (e.g. Task A blocking Task B which depends on Task A), the server immediately rejects the edge creation.
Exposing your state as a graph enables the server to run advanced graph query tools:
critical_path: Computes the longest chain of unfinished tasks blocking a milestone so the agent knows what to prioritize.impact_analysis: Calculates the "blast radius" or downstream dependency chain affected if a node (or code file) is edited or deleted.detect_contradictions: Audits the database for logical flaws (e.g. finished tasks that still have active blockers, or contradicting design decisions).decision_trail: Traces the historical lineage of updates and contradictions back to the original architectural choice.get_event_log / get_node_history: Query the append-only event ledger and trace exactly when, how, and by whom a node was modified.undo_last: Reverts the last mutation on a node (rollback) to recover from a downstream reasoning or testing failure (FSM State Traceback).state-memory-mcp is designed to address the key bottlenecks of stateless agentic workflows identified in cognitive science and multi-agent system design:
In a stateless agentic loop, packing the context window with conversation histories, full schemas, and system guidelines quickly exceeds the active attention budget, leading to attention diffusion and constraint hallucination. By separating the irreducible complexity of a task (Intrinsic Cognitive Load, $CL_I$) from formatting and presentation clutter (Extraneous Cognitive Load, $CL_E$), state-memory-mcp externalizes state. Offloading state into a local SQLite database reduces $CL_E$ and converts a difficult recall task into a deterministic recognition task.
In unconstrained environments, language models suffer from greediness and exploration loops. Formalizing transitions using a state-driven graph provides mathematical guarantees of correctness. Key execution rules enabled by this include:
undo_last) rather than trying to recover within a corrupted context window.Standard vector RAG splits codebases into chunks and retrieves them using probabilistic cosine similarity. If the first hop of context retrieval returns structurally incorrect context, downstream models amplify the error. Grounding the first reasoning step in deterministic graph traversals (using direct nodes and edges) avoids this error propagation entirely.
Empirical studies of stateful context protocol architectures show massive improvements in cost, latency, and reliability:
With v0.3.0, state-memory-mcp introduces full session management, change logging, and state rollback:
Track concurrent agents or sequential tasks using tracked sessions. Starting a session returns a session_id that stamps all subsequent graph mutations:
start_session: Start a session with an optional agent_id (e.g. claude-coder, gemini-tester) and custom metadata.end_session: Conclude the session and log completion.list_sessions: List active and completed sessions.All mutations to nodes and edges are recorded in an append-only events ledger.
get_event_log: Query events in the project with filters.get_node_history: View every update, creation, or deletion event for a specific node in chronological order.undo_last: Revert the last recorded change on a node by restoring its before_state or deleting a newly created node.save_snapshot: Save the current graph structure (all nodes and edges) as a named context checkpoint.list_snapshots: View historical checkpoints.diff_snapshots: Compare any two checkpoints. Returns exactly which nodes were added, removed, updated, or had their status changed, plus any added/removed edge relationships.export_trajectories: Export the chronological transition log of a project in JSONL format, providing clean training data to fine-tune smaller local models on standard operating procedures.state-memory-mcp doctor discovers and checks root and nested Git repositories across sub-directories up to depth 4, reporting active branches and clean/dirty state.list_nodes, search_nodes) and health auditing (audit, audit_project_db, doctor) observe and audit nested .state-memory-mcp databases in sub-directories (include_subdirectories: true), annotating nodes with sub-project origin tags (subproject: <slug>).spec, requirement, acceptance_criterion, contract) and SDD edge relationships (satisfies, verifies, specifies, violates, drifts_from).ingest_spec / state-memory-mcp spec:ingest <file>: Parse and ingest Markdown PRDs, OpenSpec files, or Gherkin (.feature) BDD files directly into memory graph nodes.export_spec / state-memory-mcp spec:export <specId>: Export graph-managed specs and child requirements back out to Markdown or Gherkin text.get_spec_compliance / state-memory-mcp spec:matrix: Calculate real-time Spec Compliance matrix and requirement coverage ratio.scaffold_spec: Scaffold standard feature specification templates in .specs/.verify_requirement: Mark acceptance criteria as verified, failing, or skipped, optionally linking test observations..specs/ or docs/specs/ files in Git commits and flags graph spec nodes as stale.state-memory-mcp comes with a powerful command line interface to manage project databases:
# Initialize state-memory-mcp in your project (creates .state-memory-mcp/,
# updates .gitignore, scaffolds IDE instructions and MCP configs)
state-memory-mcp init [--no-git] [--commits <n>] [--no-tasks] [--no-artifacts]
# Start the MCP server (used by IDE configs)
state-memory-mcp run
# View the interactive 3D graph visualizer in your default browser
state-memory-mcp view --project my-project
# Inspect project nodes in ASCII format
state-memory-mcp inspect --project my-project
# Display project graph ROI, productivity, and token savings metrics
state-memory-mcp metrics --project my-project
# Export graph data (JSON, DOT, Mermaid, HTML formats supported)
state-memory-mcp export --project my-project --format html --out graph.html
state-memory-mcp export --project my-project --format mermaid
# Import graph data from a JSON file (overwrites existing project data)
state-memory-mcp import data.json --project my-project
# Incrementally scan git history into the graph
state-memory-mcp scan-git --project my-project --commits 30
# Back up the project database to a SQLite file
state-memory-mcp backup --project my-project --out backup.db
# Restore the project database from a SQLite backup file (destructively overwrites)
state-memory-mcp restore backup.db --project my-project
# Audit project and sub-directory databases for integrity, cycles, and contradictions
state-memory-mcp audit --project my-project
# Run environment health checks (Node, SQLite, FTS5, permissions, root & sub-directory git repos, graph integrity)
state-memory-mcp doctor --project my-project
# Update state-memory-mcp globally to the latest version published on npm
state-memory-mcp update
# Merge an external SQLite database into the current project database
state-memory-mcp merge other-project.db --project my-project [--force]
When starting the server via state-memory-mcp run or starting the CLI via state-memory-mcp init, the engine executes Auto-Initialization (runAutoInit()):
.state-memory-mcp/ directory, database storage, and .gitignore preventing database lock collisions.~/.gemini/antigravity/mcp/state-memory-mcp/.claude/mcp.json / claude_desktop_config.json.cursor/mcp.json.vscode/mcp.json.windsurf/mcp.json / .cline/mcp.json.agents/AGENTS.md rules and .agents/skills/state-memory-mcp/SKILL.md skill instructions so agents immediately know how to use the server.Running state-memory-mcp init automatically creates these configuration files for you. If you prefer to configure manually:
.cursor/mcp.json){
"mcpServers": {
"state-memory-mcp": {
"command": "state-memory-mcp",
"args": ["run"],
"env": {
"STATE_MEMORY_MCP_PROJECT": "your-project-slug"
}
}
}
}
~/.gemini/antigravity/mcp.json){
"mcpServers": {
"state-memory-mcp": {
"command": "state-memory-mcp",
"args": ["run"],
"env": {
"STATE_MEMORY_MCP_PROJECT": "your-project-slug"
}
}
}
}
.vscode/mcp.json){
"servers": {
"state-memory-mcp": {
"command": "state-memory-mcp",
"args": ["run"],
"env": {
"STATE_MEMORY_MCP_PROJECT": "your-project-slug"
}
}
}
}
claude_desktop_config.json)~/Library/Application Support/Claude/claude_desktop_config.json~/.config/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"state-memory-mcp": {
"command": "state-memory-mcp",
"args": ["run"],
"env": {
"STATE_MEMORY_MCP_PROJECT": "your-project-slug"
}
}
}
}
~/.gemini/antigravity/settings.json)For Google Antigravity (AGY), custom MCP servers are configured globally in your ~/.gemini/antigravity/settings.json (or locally in your workspace .agents/settings.json):
{
"mcpServers": {
"state-memory-mcp": {
"command": "state-memory-mcp",
"args": ["run"],
"env": {
"STATE_MEMORY_MCP_PROJECT": "your-project-slug"
}
}
}
}
init Sets UpRunning state-memory-mcp init in your project root will:
.state-memory-mcp/ data directory.state-memory-mcp to your .gitignore.gemini/instructions.md).cursor/rules/state-memory-mcp.mdc).github/copilot-instructions.md).vscode/instructions.md)CLAUDE.md).windsurfrules)All operations are idempotent — running init multiple times is safe.
The Git Scanner (scanGit) hooks directly into your local git repository to automatically construct a semantic workflow map of your commits:
feat:, fix:, docs:, refactor:).observation node carrying metadata like commit hash, author email, timestamp, and files modified.task nodes linked to the commit observation via an extends relationship.artifact node and links the corresponding commit observation to it using a modifies relationship.For maximum developer-agent alignment, seed your graph immediately after initializing the project:
plan node representing your project roadmap:
add_node(type: "plan", title: "Project Roadmap")add_node(type: "milestone", title: "v1.0 MVP Release")add_edge(source_id: mvp_id, target_id: roadmap_id, type: "part_of")decision nodes describing architectural components and link them to the milestones:
add_node(type: "decision", title: "SQLite Database Choice", metadata: { "rationale": "Simple, local storage" })add_edge(source_id: db_choice_id, target_id: mvp_id, type: "decided_in")| Variable | Description | Default Value |
|---|---|---|
STATE_MEMORY_MCP_DIR | Absolute path to directory where database files are stored. | .state-memory-mcp/ (Project-local, in CWD) |
STATE_MEMORY_MCP_PROJECT | Active project slug identifier. | Resolved from working directory name |
STATE_MEMORY_MCP_LOG_LEVEL | Logging verbosity on stderr (debug, info, warn, error). | info |
STATE_MEMORY_MCP_DEFAULT_BRANCH | Fallback branch name if Git cannot be queried on startup. | main |
bootstrap_session: Single-turn session initialization combining session tracking (start_session), context snapshot generation, and top unblocked tasks retrieval.
project, agent_id, metadata, task_limit.complete_task: Single-turn task completion that updates task status to 'done', optionally creates a produced 'artifact' node, and links them via a 'produces' relationship.
task_id, artifact_title, artifact_metadata, tags, project.batch_create_nodes: Atomically creates multiple nodes in a single transaction with SQLite FTS5 search index synchronization.
nodes, project.batch_add_edges: Atomically creates multiple edge relationships with DAG cycle checks (hasCycle) and transaction rollback on failure.
edges, project.add_node: Creates a node (task, decision, artifact, plan, observation, blocker, milestone).
type, title, project, status, metadata, tags.update_node: Modifies properties (title, status, metadata, tags) of an existing node.
id, project, title, status, metadata, tags.get_node: Fetches a node's details and all inbound/outbound relationships.
id, project, include_edges.remove_node: Deletes a node and automatically cascades deletions to all connected edges.
id, project.add_edge: Links two nodes with a typed relationship (depends_on, blocks, produces, references, decided_in, updates, contradicts, part_of, implements, child_of, extends, modifies, renders_state). Cycles are rejected for directed dependency types.
source_id, target_id, type, project, properties.remove_edge: Deletes a specific relationship between two nodes.
source_id, target_id, type, project.list_nodes: Returns lists of nodes matching filters with support for selective field projection (fields), compact mode, pagination, tags, and branch tracking.
type, status, tags, project, limit, offset, compact, git_branch, fields, pretty_print.search_nodes: Performs fast full-text search (FTS5) or TF-IDF cosine similarity search across title, metadata, and tags with field projection (fields).
query, type, status, limit, algorithm, fields, pretty_print, project.get_subgraph: Extracts a node and its N-hop neighbor nodes and connecting relationships with field projection (fields).
root_id, depth, edge_types, node_types, fields, pretty_print, project.query_graph: Executes safe, read-only SELECT SQL queries against the underlying database. Sanitized to block dangerous SQLite functions.
sql, params, project.trace_dependencies: Computes recursive upstream (requirements) or downstream (dependents) dependency chains.
node_id, direction, edge_types, max_depth, project.find_blockers: Lists active blocker nodes and the tasks/milestones they block.
node_id, include_transitive, project.get_project_summary: Provides a high-level project summary containing node breakdowns, task completion progress, recent decisions, and active blockers.
project.decision_trail: Traces the historical chain of decisions that led to a given state (updates/contradicts).
node_id, project.critical_path: Computes the longest chain of uncompleted tasks leading to a milestone (minimum set of tasks that must finish).
milestone_id, project.impact_analysis: Calculates the downstream blast radius if a node is modified or deleted.
node_id, project.detect_contradictions: Scans the project for logical flaws (e.g. completed tasks that still have active blockers, contradicting accepted decisions).
project.value_metrics: Computes estimated time and token savings, graph density, orphan count, decision reuse rate, task velocity, and active blocker ages. Returns both structured JSON and a formatted Markdown report.
project.get_context_snapshot: Dual-format context snapshot returning structured JSON data (blockers, pending tasks) and pre-rendered Markdown for quick agent prompting.
project.find_related_decisions: Finds all decisions that affected a given artifact node (directly or via milestones).
artifact_id, project.find_blocked_tasks: Finds all tasks blocked directly or transitively by a decision node.
decision_id, project.scaffold_template: Automates scaffolding of standard development workflows. Supported templates: fdd (Feature-Driven Development design/build milestones & tasks) and rfc (Request for Comments author/review/decision loop).
template, name, project.export_graph: Exports project graph to JSON, DOT, Mermaid flowchart, or interactive HTML formats.
format, project.import_graph: Bulk loads nodes and edges from external files.
nodes, edges, project.backup_project_db: Creates an online SQLite database backup file along with an integrity SHA-256 checksum file.
outputPath, project.restore_project_db: Restores the database from a backup file, checking the structural SQLite integrity and matching the SHA-256 checksum file.
backupPath, project.audit_project_db: Audits database structure, foreign key constraints, orphaned edges, cycles, and logical contradictions.
project.merge_project_db: Safely merges two project databases, keeping the newer node (based on updated_at) and validating circular dependencies.
sourcePath, force, project.start_session: Starts a tracking session for mutations.
agent_id, project, metadata.end_session: Concludes an active session.
session_id, project.get_event_log: Retrieves mutation event logs.
session_id, entity_id, event_type, since, until, limit, offset, project.get_node_history: Fetches modification history for a specific node.
node_id, project.undo_last: Undoes the last mutation event on a specific node.
node_id, project.save_snapshot: Saves a full static graph snapshot.
session_id, project.list_snapshots: Lists saved snapshots.
limit, project.diff_snapshots: Computes changes (added, removed, status/property changes) between two snapshots.
snapshot_id_a, snapshot_id_b, project.export_trajectories: Exports trajectories in JSONL format for agent training.
session_id, since, until, limit, offset, project.batch_update: Executes atomic batch node updates (status, metadata, tags).
ids, status, metadata, tags, project.next_tasks: Suggests next runnable tasks based on priority, blocker status, branch, and field projection (fields).
git_branch, limit, include_context, fields, pretty_print, project.what_changed: Reports graph changeset diffs since a session start or timestamp.
since, since_session, git_branch, project.get_stale_nodes: Identifies nodes that have been inactive/untouched for longer than a given threshold.
older_than, status, type, git_branch, limit, project.validate_graph: Validates the graph for structural anomalies with self-healing auto-fix option (auto_fix: true).
checks, auto_fix, project.prune_events: Prunes event logs older than a threshold while preserving entity states.
older_than, dry_run, preserve_types, project.add_note: Atomically creates an observation note and references an existing node.
text, attach_to, tags, project.state-memory-mcp is fully compliant with the latest Model Context Protocol specification, exposing read-only data resources, dynamic URI templates, and reusable prompt templates to client applications.
Resources provide direct read-only context to LLMs. state-memory-mcp registers the following resources under the state-memory:/// URI scheme:
state-memory:///{project}/summary: Returns the structured project summary (counts, task progress, recent decisions).state-memory:///{project}/blockers: Returns the list of all active blockers and their affected nodes.state-memory:///{project}/tasks/next: Returns top unblocked runnable tasks.state-memory:///{project}/node/{id}: Returns individual node details and connected relationships.state-memory:///{project}/metrics: Returns project velocity and value creation metrics.state-memory:///{project}/decisions: Returns the log of recent accepted decisions.state-memory:///{project}/graph.json: Returns a full node/edge database export as raw JSON.Prompts are reusable workflow templates that streamline agent interactions:
session-start: Generates a startup workspace overview, outlining the project summary, active blockers, and immediate pending tasks.
project (optional).handover-summary: Generates context summary for agent-to-agent session handoffs and recent event logs.
project (optional).task-decomposition: Guides model through decomposing a milestone into a task DAG with dependency links.
milestone_title (required), project (optional).post-mortem: Prompts post-mortem analysis of stale/cancelled tasks and decision record updates.
project (optional).plan-feature: Prompts the agent to plan out a new feature, guiding milestone creation, task decomposition, dependency mapping, and design decisions.
feature_name (required), project (optional).review-decisions: Prompts the agent to review the decision log and logical contradictions audit, recommending improvements or fixes.
project (optional).triage-blockers: Triages active blockers, helping to analyze the critical path and devise mitigation strategies.
project (optional).state-memory-mcp offers an interactive, dark-mode browser 3D visualization using WebGL/Three.js to explore your project's workflow state graph.

To generate and view the visualizer instantly in your default web browser, run:
state-memory-mcp view --project my-project
This command:
viewer.html containing the embedded graph dataset.To export the visualizer to a specific file:
state-memory-mcp export --project my-project --format html --out ./my-graph.html
You can share the exported HTML file with your team. The file contains a responsive 3D Force-Directed network graph rendering with:
The database schema migrations run automatically on first run after upgrading the package. No manual steps are required, and existing node and edge data is preserved.
# Run unit and integration tests
npm run test
Developed and maintained by PuterVision LLC. Released under the MIT License.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
By using this software, you acknowledge and agree that the authors and contributors are not liable for any database corruption, Git repository modification, data loss, or other issues resulting from execution. Always backup your database files before performing destructive operations.
All product names, trademarks, service marks, logos, and brands (such as Cursor, Claude Code, OpenAI, Gemini, Windsurf, GitHub, and SQLite) referenced in this project and documentation are the property of their respective owners. References to third-party products, services, or companies are strictly for compatibility identification and descriptive purposes only, and do not constitute or imply endorsement, sponsorship, or affiliation with PuterVision LLC.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.