MCP - any client
Standard protocol, zero lock-in
Cognetivy exposes a full MCP server via cognetivy mcp. Any MCP-compatible coding agent can connect to it - no proprietary format, no vendor lock-in.
Prerequisites
Install Cognetivy globally so the MCP server is available on your PATH:
npm install -g cognetivy
Then initialise a workspace in your project:
npx cognetivy
Connect your agent
Add the Cognetivy MCP server to your agent’s config. The exact location varies by client, but the server definition is always the same:
{
"mcpServers": {
"cognetivy": {
"command": "cognetivy",
"args": ["mcp"]
}
}
}Workspace not in your project root?
Pass the workspace path explicitly:
"args": ["mcp", "--workspace", "/path/to/project"]
Works with any MCP-compatible agent
The installer also supports these agents directly via npx cognetivy:
OpenAI Codex
Add to Codex MCP config
GitHub Copilot
Add to Copilot MCP config
Gemini CLI
Add to Gemini CLI MCP config
Amp
Add to Amp MCP config
OpenCode
Add to OpenCode MCP config
CCR (Claude Code Router)
Add to CCR MCP config
And any other agent that speaks the MCP protocol - the server configuration above works universally.
Available MCP tools
Once connected, your agent has access to the full Cognetivy toolset:
workflow_getGet the current workflow version
workflow_listList all workflows in the workspace
workflow_setSet a workflow version from JSON
run_startStart a new run with an input file
run_statusGet run state and next step hint
run_stepAdvance the run: start or complete a node
run_completeMark a run as completed
event_appendAppend an event to a run
collection_getGet collection items for a run + kind
collection_appendAppend an item to a collection
collection_schema_getGet the collection schema for a workflow
node_result_listList node results for a run