Systemonomic
Systemonomic MCP Servers
MCP (Model Context Protocol) servers that expose Systemonomic's Work Domain Analysis, ATSS assessment, and organizational design capabilities to AI agents (Claude Desktop, Cursor, Claude Code, etc.).
Quick Start
1. Install
pip install systemonomic-mcp2. Get an API Key
Log in to Systemonomic
Go to Profile → API Keys
Click Generate API Key
Copy the key (starts with
sk_sys_) — it's shown only once
3. Configure
Set the environment variable:
export SYSTEMONOMIC_API_KEY="sk_sys_your_key_here"Optionally, point to a different API endpoint (defaults to production):
export SYSTEMONOMIC_API_URL="https://your-dev-backend.up.railway.app"4. Add to Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"systemonomic-wda": {
"command": "python",
"args": ["-m", "systemonomic_mcp.wda_server"],
"env": {
"SYSTEMONOMIC_API_KEY": "sk_sys_your_key_here"
}
},
"systemonomic-atss": {
"command": "python",
"args": ["-m", "systemonomic_mcp.atss_server"],
"env": {
"SYSTEMONOMIC_API_KEY": "sk_sys_your_key_here"
}
},
"systemonomic-org": {
"command": "python",
"args": ["-m", "systemonomic_mcp.org_server"],
"env": {
"SYSTEMONOMIC_API_KEY": "sk_sys_your_key_here"
}
}
}
}5. Add to Cursor
In Cursor Settings → MCP Servers, add each server:
Name:
systemonomic-wdaCommand:
python -m systemonomic_mcp.wda_serverEnvironment:
SYSTEMONOMIC_API_KEY=sk_sys_...
Repeat for atss_server and org_server.
Related MCP server: EasyAiFlows Automation Assessment
Available Servers
systemonomic-wda — Work Domain Analysis
Tool | Description |
| List all projects |
| Get complete project state |
| Create a new project |
| Get project statistics |
| List WDA nodes |
| Create a node at a WDA level |
| Update a node's label/level/description |
| Delete a node |
| List means-ends links |
| Link two nodes |
| Remove a link |
| AI-generate a full WDA from a text description |
| Export project as JSON |
| Import nodes and links |
systemonomic-atss — Assessment & Tasks
Tool | Description |
| List project tasks |
| Create a task |
| Auto-generate tasks from WDA Objects |
| AI-derived task suggestions |
| List pending suggestions |
| Promote suggestions to tasks |
| Run ATSS assessment on all tasks |
| Get stored assessment results |
| Save assessment results |
| List assessment run history |
systemonomic-org — Organizational Design
Tool | Description |
| Get current roles, org units, allocations |
| Save org design |
| AI-generated restructure proposal |
| Apply a restructure proposal |
| Validate RACI matrix |
| Create version snapshot |
| List snapshots |
| Export as JSON |
| Generate comprehensive PDF report |
| Check report readiness |
Example Conversations
"Help me model our procurement process"
You: Generate a WDA for our university procurement department. They handle purchase requests, vendor management, contract negotiation, and compliance with government regulations.
Claude: Uses
create_project→generate_wda→ returns the generated hierarchy
"Assess which tasks can be automated"
You: For the procurement project, derive tasks from the WDA and run an automation assessment.
Claude: Uses
generate_tasks_from_wda→run_atss_batch→ summarizes automation candidates
"Generate the full report"
You: Create a PDF report for the procurement project.
Claude: Uses
generate_pdf_report→ saves the PDF
Development
# Run a server locally for testing
cd mcp
pip install -e .
SYSTEMONOMIC_API_KEY=sk_sys_... python -m systemonomic_mcp.wda_server
# Use the MCP inspector
SYSTEMONOMIC_API_KEY=sk_sys_... mcp dev src/systemonomic_mcp/wda_server.pyMaintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenance12 deterministic graph-theory tools for structural analysis. Describe systems in EN syntax (subject do: action needs: inputs yields: outputs) — get topology, bottlenecks, blast radius, critical paths and lot more. No AI inside the computation.Last updated121428MIT
- AlicenseAqualityDmaintenanceAssess your business's AI automation readiness across 20 industries. Get a personalized score, specific recommendations, and time/revenue impact estimatesLast updated2131MIT
- AlicenseAqualityDmaintenanceEnables AI agents to perform structured root cause analysis from clinical incidents and construct learner-ready lesson plans for medical education.Last updated21Apache 2.0
- Flicense-qualityDmaintenanceProvides systems thinking models as composable analysis lenses for architecture, infrastructure, DevOps, incident analysis, and technical decision-making.Last updated1
Related MCP Connectors
Transformation readiness gaps and initiative risk signals for AI agents and enterprise change leads.
Turns vague automation requests into tool stacks, prompts, QA checks, and human boundaries.
AI knowledge graph for architecture, portfolio, and digital strategy management.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/TonyC23/systemonomic-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server