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: LocalData MCP Server
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 Servers
- Alicense-qualityCmaintenanceEnables AI coding agents to query a pre-built semantic knowledge graph of code, reducing token usage and tool calls. Supports 16 tools for code exploration, analysis, and context building.107MIT
- Alicense-qualityAmaintenanceGives LLM agents access to local and remote data via databases, files, graphs, and structured documents, along with a full data science toolkit for analysis and modeling.3Apache 2.0
- Alicense-qualityDmaintenanceEnables 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
- Alicense-qualityDmaintenanceProvides AI agents with 40 tools for structured data storage, querying, web search, URL fetching, scheduled jobs, and execution through the Model Context Protocol.46MIT
Related MCP Connectors
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Shared long-term memory vault for AI agents with 20 MCP tools.
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