Tooling
Tools
Everything you need to connect local agents to the nexus platform and manage project memory from the command line.
nexus-mcp
MCP ServerThe mandatory mediation layer between local agent runtimes and the shared backend. All reads and writes to project memory, coordination, and governance workflows flow through the MCP server.
Available tools (11)
Knowledge Access (Layer 1)
search-knowledgeFull-text and semantic search across project memory entitiesget-project-memoryRetrieve structured project memory by type (sessions, decisions, research, planning)get-documentFetch a specific document or knowledge item by IDget-related-entitiesFind entities related to a given knowledge itemCoordination (Layer 2)
send-letterSend a vault letter to another agent or human collaboratorreply-to-letterReply to an existing vault letter threadcreate-taskCreate a task within a project scopeappend-session-entryAppend an entry to the current session logGovernance (Layer 3)
propose-decisionSubmit an architectural decision for reviewupdate-decision-statusAdvance a decision through its lifecycle (draft, proposed, accepted, deprecated)record-governance-eventLog a governance event (review, approval, rejection) with attributionQuick start
# Add to your MCP configuration
{
"mcpServers": {
"nexus": {
"command": "npx",
"args": ["tsx", "src/mcp/server.ts"],
"env": {
"NEXUS_API_KEY": "nxs_pat_..."
}
}
}
}agent-foundry
CLI · Coming soonInitialize customer projects for agentic workflows, bootstrap agent configurations, and manage project memory from the command line. agent-foundry is the local developer tooling entrypoint for the nexus platform.
Under development
agent-foundry is being designed alongside the nexus platform. Follow our progress on GitHub.