SuperAgentic MCP Server
Provides tools for querying and storing insights in a Neo4j knowledge graph using Cypher, enabling structured domain knowledge management.
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., "@SuperAgentic MCP ServerRun a simulation with a fault scenario and compute metrics."
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.
SuperAgentic
Single-orchestrator architecture for simulation systems with data analytics and knowledge graph capabilities.
Philosophy
Single agent. Dynamic reasoning. Tools execute, you decide.
One orchestrator decides workflow based on query type
Agent writes all SQL, Python, and Cypher queries
Tools only execute - no LLM inside tools
Session persistence with paths passed between tools
Discovery-first: agent learns domain from tool results
Related MCP server: osdu-mcp
Architecture
+------------------------------------------------------------------+
| SUPERAGENTIC |
| |
| +-------------------------+ +------------------------------+ |
| | AGENT SERVER | | DIGITAL TWIN SERVER | |
| | | | | |
| | +-------------------+ | | +------------------------+ | |
| | | LangGraph | | | | MCP SERVER | | |
| | | Workflow | | | | (19 tools) | | |
| | +-------------------+ | | | | | |
| | | | | | Discovery (5) | | |
| | +-------------------+ | | | Data (5) | | |
| | | Orchestrator |--+--->| | Configuration (5) | | |
| | | (ReAct Agent) | | | | Simulation (2) | | |
| | +-------------------+ | | | Core (2) | | |
| | | | +------------------------+ | |
| | core/ | | digitaltwin/ | |
| +-------------------------+ +------------------------------+ |
+------------------------------------------------------------------+Tools
Core (2)
Tool | Purpose |
| Signal completion (required at end) |
| Request clarification (use sparingly) |
Discovery (5)
Tool | Purpose |
| Available controllers, scenarios, faults, profiles |
| List data files or get specific schema |
| Knowledge Graph structure |
| What's saved in session |
| Column names and sample data |
Data (5)
Tool | Purpose |
| Query data, returns |
| Run Python calculations, returns |
| Create plots, returns |
| Read from Knowledge Graph |
| Write to Knowledge Graph |
Configuration (5)
Tool | Purpose |
| Unified JSON configuration |
| Set controller with params |
| Set workload scenario |
| Inject actuator faults |
| Set plant physics |
Simulation (2)
Tool | Purpose |
| Execute simulation |
| Compute performance metrics |
Data Flow
get_sql_data ──────> saved_path
│
v
execute_analytics ──> output_path
│
v
get_data_preview ──> column names
│
v
execute_visualization ──> plot_pathAlways pass paths between tools. Don't reload data unnecessarily.
Workflow Patterns
Data Analysis
get_sql_schema() → get_sql_data(file, sql) → saved_path
execute_analytics(code, input_path) → output_path
get_data_preview(output_path) → column names
execute_visualization(code, input_path) → plot_path
task_completed(findings)Simulation
list_options()
configure_controller/scenario/faults
run_simulation()
compute_metrics()
task_completed(results)Follow-Up Query
list_session_artifacts() → find existing paths
get_data_preview(path) → learn columns
execute_visualization(code, input_path) → create plot
task_completed(summary)Session Artifacts
All artifacts saved to digitaltwin/sessions/<session_id>/:
sessions/session_YYYYMMDD_HHMMSS/
├── session.json # Metadata & event log
├── data_snapshots/ # SQL query results (JSON)
├── analysis_code/ # Generated Python code
├── analysis_data/ # Analytics outputs (JSON)
├── visualization_code/ # Generated plot code
└── visualizations/ # Saved plots (PNG/HTML)Quick Start
# Install dependencies
pip install -r requirements.txt
pip install -r digitaltwin/requirements.txt
# Set API key
export GROQ_API_KEY=your_key
# Run interactive mode
python agent.py
# Single query
python agent.py -q "Analyze temperature patterns"Environment Variables
# Required
GROQ_API_KEY=your_key
# Optional
GROQ_MODEL=model_name
LLM_PROVIDER=groq # or "openai"
NEO4J_URI=bolt://localhost:7687
NEO4J_USER=neo4j
NEO4J_PASSWORD=passwordDirectory Structure
superAgentic/
├── agent.py # Entry point
├── core/ # Agent intelligence
│ ├── workflow.py # LangGraph workflow
│ ├── nodes.py # ReAct agent node
│ ├── state.py # State definition
│ ├── context.py # Event history
│ ├── prompts.py # System prompt
│ ├── mcp_manager.py # Tool discovery
│ └── agent_cards.py # Agent configuration
│
└── digitaltwin/ # Domain implementation
├── config/
│ ├── __init__.py # Config loader
│ └── domain_config.yaml
├── tools/mcp_server.py # MCP tools
├── sessions/ # Session persistence
├── data/ # Data files
├── simulation/ # Physics engine
├── controllers/ # Control algorithms
├── runtime/ # Unified runtime
└── kg/ # Knowledge GraphDesign Principles
Principle | Rationale |
Single Orchestrator | Sequential workflows are optimal for single agent |
Agent Writes, Tools Execute | All reasoning in orchestrator, tools just run code |
Discovery First | Fetch schema/options before writing queries |
Preview Before Viz | Get exact column names to avoid empty plots |
Session Persistence | Pass paths between tools, avoid context overflow |
Follow-Up Awareness | Check artifacts before redoing work |
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.
Related MCP Connectors
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Give your AI agents the tools to build, manage, and run automation workflows.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for PTC ThingWorx, the IIoT platform, providing 8 tools for AI agents to read live state and trigger actions across the industrial asset graph with env-gated safety for writes and invocations.8MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with the OSDU® data platform through Model Context Protocol, providing tools for search, storage, schema management, and dataset operations.1Apache 2.0
- AlicenseBqualityDmaintenanceProvides AI agents with 40 tools for structured data storage, querying, web search, URL fetching, scheduled jobs, and execution through the Model Context Protocol.44115MIT
- AlicenseAqualityFmaintenanceProvides 14 MCP tools for AI agent infrastructure, enabling knowledge base queries, skill search, handoffs, blueprint validation, trust scoring, identity verification, SLA validation, and compliance checks.22MIT
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/saxenam06/gpu-rack-thermal-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server