Aionis MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Aionis MCP Servercompile context for my current project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@aionis/mcp
MCP stdio bridge for Aionis execution memory.
Docs: https://docs.aionis.work/integrations/mcp
Use this package when you want Claude Code, Cursor, Codex-style tools, or
another MCP client to use Aionis without rewriting the host Agent loop first.
Connect the bridge, call aionis_context, and let the Agent continue from
governed state instead of raw chat history.
npx @aionis/mcp@latest --base-url http://127.0.0.1:3001 --scope-from workspaceStart a local Runtime first:
npx aionis setup
cd Aionis
npm run -s lite:startEnvironment form:
AIONIS_BASE_URL=http://127.0.0.1:3001 \
AIONIS_TENANT_ID=default \
AIONIS_SCOPE_FROM=workspace \
npx @aionis/mcp@latestUse --scope my-project when your host already knows the exact memory boundary.
Use --scope-from workspace for coding-agent clients so Aionis derives a stable
project scope from .aionis/workspace.json. If the MCP client launches outside
the repo, add --repo-root /absolute/path/to/repo. Git root, git remote, and cwd
identities are stored as aliases for the same ws:<name>:<id> scope, so
starting from a non-git directory and running git init later does not split
the execution memory boundary.
Tools
The server exposes stable product tools, not internal Runtime packets:
Tool | Purpose |
| Compile governed Agent context for the current run. Optionally records a lightweight observation first. |
| Record a planner/worker/verifier/reviewer step, including planner plan assets and rejected branch evidence. Feedback attribution is optional. |
| Record branch-aware multi-agent handoff state. |
| Store ordinary project memory through the governed observe path. |
| Route external Mem0/Zep/vector/markdown candidates through Aionis Memory Firewall before prompt use. |
| Measure whether guided memory changed the run. |
| Return read-only operator/audit state. |
| Replay what memory the Agent could see at decision time. |
| Check Runtime reachability. |
aionis_context is the MCP transport for the canonical SDK AgentContext. It
calls execution.guideAgentContextForRole(), returns the same top-level
agent_prompt, and exposes a prompt-free aionis_execution_agent_context_v1
audit view under structuredContent.execution_context. MCP clients should pass
only top-level agent_prompt to an Agent; richer clients can also read the
structured execution context and receipts for host logic.
It accepts context_mode: "compact_agent" when an MCP client needs a shorter
Runtime guide, and budget_profile, max_prompt_chars, repo_state, and
additional_instructions when the host can provide execution-environment facts.
For instance, pass repo_state.missing_files so Aionis can tell the Agent that a
missing active target is pending work rather than stale memory.
For Claude Code, Cursor, or another MCP host, the recommended first loop is:
aionis_context -> Agent action -> aionis_record_step -> aionis_flight_recorderUse this flow:
Use
aionis_record_stepas a planner to record the accepted plan, active targets, acceptance checks, and execution boundary.Use
aionis_record_stepagain for rejected or superseded evidence with the target files and validation result.Ask
aionis_contextfor the worker/reviewer context before implementation.Use
aionis_flight_recorderafter the run to replay which plan memories, boundaries, and rehydrate pointers were visible at decision time.
This is the MCP shape of Aionis Plan as Memory Asset: the MCP client can use a strong planner once, then let later workers continue from adjudicated execution memory instead of raw chat history.
The tool returns these structured fields in structuredContent:
Field | Meaning |
| SDK structured execution context for host logic and audit, including active targets, missing active targets, warnings, and prompt budget metadata. |
| Compact audit receipt showing which memories were exposed, suppressed, rehydrated, or attributed. |
| Read-only per-memory admission ledger for host/operator logs and future dataset export. |
| Memory IDs that need raw evidence recovery before exact use. |
| Runtime/SDK warnings such as missing active targets or blocked routes. |
| Bounded Agent instructions compiled from governed memory surfaces. |
| Failed, stale, suppressed, or do-not-use memories the client should not continue. |
| Current active state or accepted procedure memories the client should prefer. |
| Candidate or contested memories that require inspection before action. |
| Compact pointers that need raw payload recovery before exact use. |
Use aionis_govern_memory when an MCP client already has memories from Mem0,
Zep, Supermemory, Pinecone, pgvector, Chroma, Weaviate, LangGraph Store,
markdown, logs, or another backend and needs Aionis to decide which ones may
direct the Agent:
{
"query_text": "Continue from the current accepted implementation state.",
"mode": "firewall",
"candidates": [
{
"external_memory_id": "mem0:current",
"source_backend": "mem0",
"text": "Current accepted target is packages/api/src/checkout.ts.",
"authority": {
"source_trust": "trusted",
"scope": "project",
"evidence_requirement": "none"
},
"lifecycle_hint": "current"
}
]
}Use aionis_flight_recorder after a run to inspect the read-only incident replay
report. The report includes memory IDs and attribution surfaces, but excludes
raw prompt text and raw memory payloads.
Related MCP server: Memclaw
Claude Code / Cursor Config
Use the MCP client's command/args configuration:
{
"mcpServers": {
"aionis": {
"command": "npx",
"args": [
"-y",
"@aionis/mcp@latest",
"--base-url",
"http://127.0.0.1:3001",
"--scope-from",
"workspace"
],
"env": {
"AIONIS_TENANT_ID": "default"
}
}
}
}Zed/Zcode-style clients use context_servers:
{
"context_servers": {
"aionis": {
"command": "npx",
"args": [
"-y",
"@aionis/mcp@latest",
"--base-url",
"http://127.0.0.1:3001",
"--scope-from",
"workspace"
],
"env": {
"AIONIS_TENANT_ID": "default"
}
}
}
}When the host starts MCP from a non-repo cwd, add:
"--repo-root",
"/absolute/path/to/your/repo"All Agent roles that use the same derived scope can share Aionis execution
memory across sessions: planner records plan assets, worker asks
aionis_context, verifier records outcomes, and reviewer can inspect the run via
aionis_flight_recorder.
Start a local Runtime first:
cd Aionis
npm run -s lite:startFor deeper host integration, use @aionis/sdk. The MCP bridge is the
drop-in path; the SDK is the full application integration path.
Claude Code / Cursor walkthrough: https://docs.aionis.work/integrations/mcp
Generated proof artifacts: https://docs.aionis.work/research
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ostinatocc/aionis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server