nodus-mcp-server
Exposes the Nodus orchestration runtime as MCP tools for memory management, goal/workflow execution, and sandboxed code execution.
README
nodus-mcp-server
An MCP (Model Context Protocol) server that exposes the Nodus orchestration runtime as tools for Claude Desktop and other MCP-compatible hosts.
What it does
Six tools over a single server process:
| Tool | Description |
|---|---|
nodus.remember |
Store a fact in persistent SQLite memory with optional tags |
nodus.recall |
Search memory by free-text query and/or tags |
nodus.forget |
Delete a memory entry by ID |
nodus.run_goal |
Run a Nodus goal (sandboxed, structured step results) |
nodus.run_workflow |
Run a Nodus workflow (checkpoint/resume capable) |
nodus.exec |
Execute arbitrary .nd code (10 s timeout, no file I/O) |
Requirements
- Python ≥ 3.10
nodus-lang >= 4.0.2nodus-mcp >= 0.1.0
pip install nodus-lang>=4.0.2 nodus-mcp>=0.1.0
Claude Desktop setup
Add to your claude_desktop_config.json (see claude_desktop_config.json in this repo for an example):
{
"mcpServers": {
"nodus": {
"command": "python",
"args": ["<path-to>/server.py", "--stdio"]
}
}
}
Restart Claude Desktop. The six nodus.* tools will appear in the tool list.
HTTP mode
For remote or multi-client use:
python server.py --http --port 8080
python server.py --http --port 8080 --bearer-token <secret>
Built-in goals and workflows
Goals
summarize — params: {text: string}
Counts characters and classifies text size (short / medium / long).
{
"name": "summarize",
"params": {"text": "Your text here"}
}
Returns:
{
"steps": {
"measure": 14,
"classify": {"chars": 14, "size": "short", "empty": false}
}
}
pipeline — params: {items: list, label: string}
Validates an item list and produces a labelled report.
{
"name": "pipeline",
"params": {"items": [1, 2, 3], "label": "batch-1"}
}
Returns:
{
"steps": {
"validate": 3,
"report": {"label": "batch-1", "item_count": 3, "has_items": true, "status": "complete"}
}
}
Workflows
research — params: {topic: string}
Two-step planning + execution workflow with checkpoints at each step.
{
"name": "research",
"params": {"topic": "LLM context windows"}
}
Returns:
{
"steps": {
"plan": {"query": "LLM context windows", "strategy": "step-by-step"},
"execute": {"topic": "LLM context windows", "query": "LLM context windows", "strategy": "step-by-step", "status": "complete"}
}
}
Adding your own goals and workflows
Drop a .nd file into goals/ or workflows/. The file should only define the goal or workflow — do not call run_goal() or run_workflow() at the bottom (the server calls it for you).
// goals/my_goal.nd — input variable injected via params
goal my_goal {
step process {
let result = len(input_text)
return {"length": result, "has_content": result > 0i}
}
}
Then call it:
{"name": "my_goal", "params": {"input_text": "hello"}}
Sandbox
.nd scripts run with:
- No file system access (
allowed_paths=[]) - No network access
- Goal timeout: 30 s
- Workflow timeout: 60 s
nodus.exectimeout: 10 s
Architecture
server.py — NodusRuntime, tool registration, MCP transport
runner.py — goal/workflow execution via ModuleLoader + VM
memory_store.py — SQLite-backed thread-safe memory store
goals/ — .nd goal definitions
workflows/ — .nd workflow definitions
data/ — SQLite DB (gitignored)
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.