Serve the knowledge graph via MCP
arc serve
command allows you to serve the Arc Memory knowledge graph via the Memory Control Protocol (MCP), making it accessible to other applications and tools.
start
status
stop
Option | Description |
---|---|
--host <host> | Host to bind the server to (default: localhost) |
--port <port> | Port to bind the server to (default: 8000) |
--db-path <path> | Path to the knowledge graph database (default: .arc/memory.db) |
--log-level <level> | Log level: debug, info, warning, error (default: info) |
--daemon | Run the server as a daemon process |
--debug | Enable debug mode |
arc-memory-client
arc-memory-js-client
arc-memory-go-client
Endpoint | Description |
---|---|
/query | Execute a graph query |
/node | Get information about a specific node |
/edge | Get information about a specific edge |
/traverse | Traverse the graph from a starting node |
/health | Check the health of the server |
--host
option to specify the interface to bind toarc serve status