systems-thinking-mcp
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., "@systems-thinking-mcpAnalyze our recent database outage with feedback loops and constraint analysis."
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.
systems-thinking-mcp
An MCP server that provides systems thinking models as composable analysis lenses for architecture, infrastructure, DevOps, incident analysis, and technical decision-making.
Inspired by @modelcontextprotocol/server-sequential-thinking. Where sequential-thinking emphasizes rigor — structured step-by-step reasoning with revision and branching — this tool emphasizes abstraction. It provides a library of mental models (feedback loops, constraint analysis, inversion, etc.) that shift Claude's perspective on a problem. The two are complementary: use sequential-thinking to reason carefully through a problem, use systems-thinking to ensure Claude's looking at it from the right angles. This helps prevent tunnel vision, surface edge cases and unintended consequences, and reign in some of Claude's grandiousity by challenging the LLM to view the problem in the broader context in which it lives.
I've had good luck using this in troubleshooting and debugging, design, code review, and spec review (pairs nicely with superpower-mcp just run it against the produced spec after the spec review cylce). This is a highly general tool and can provide good results across different domains, development, infrastructure, devops.
How it works
Five tools with a lifecycle: start a session (returns model clusters by category), expand your selection (get full model details and graph neighbors), apply 2-4 lenses from different perspectives, then synthesize across them.
The value isn't in any single lens — it's in the composition. Each model surfaces things the others miss, and the server provides prior findings from earlier lenses so the LLM can judge connections between them. When you apply constraint analysis and then queuing theory, the findings from the first lens are available when applying the second.
Models also define counterbalances — deliberately opposing perspectives. When you apply leverage-points, the server suggests KISS as a counterbalance: "The simplest solution may miss high-leverage structural changes that pay off long-term." This productive tension prevents single-framework tunnel vision.
Related MCP server: think-mcp
Install
{
"mcpServers": {
"systems-thinking": {
"type": "stdio",
"command": "npx",
"args": ["-y", "systems-thinking-mcp"]
}
}
}Or run locally:
git clone https://github.com/davidpanter/systems-thinking.git
cd systems-thinking
npm install && npm run build{
"mcpServers": {
"systems-thinking": {
"type": "stdio",
"command": "node",
"args": ["/path/to/systems-thinking/dist/index.js"]
}
}
}Tools
Tool | Purpose |
start_analysis | Frame a problem. Returns model clusters grouped by category for selection. |
expand_selection | Takes model IDs. Returns full model details, graph neighbors, counterbalances, and uncovered categories. |
apply_lens | Apply a model to the problem. Returns prior findings from earlier lenses, counterbalance suggestions, analysis depth indicator, and complementary next lenses. |
synthesize | Integrate findings across all applied lenses. Suggests additional lenses to fill gaps. |
get_strategy | Returns a concern map (domain, focus, weight) for a named strategy, guiding which categories to prioritize. |
Models (56)
Category | Models |
Architecture | Modularity, Coupling & Cohesion, Conway's Law, Failure Modes, KISS, Separation of Concerns, Idempotency, Blast Radius, State Ownership, Error Propagation, Contract Boundaries, Data Transformation Fidelity |
Dynamics | Source & Sink, System Dynamics, Feedback & Feedforward Loops, Stock & Flow, Causal Loop Diagrams, Local vs Global Optimization |
Operations | Queuing Theory, Buffers & Buffer Sizing, Constraint Analysis, Leverage Points, Migration |
Paradigms | Functional Lens, Domain Modeling Lens, Event-Driven Lens |
Reasoning | Inversion, Second-Order Thinking, Map vs Territory, Circle of Competence, Occam's Razor, Margin of Safety, Reversibility, Hanlon's Razor, Build vs. Buy, Dependency Risk, Adversarial Analysis, Goodhart's Law |
Reliability | Observability Gaps, Error Budgets, Graceful Degradation, Back Pressure, Operational Complexity |
Schema | Normalization, Denormalization |
Security | CIA Triad, Least Privilege, Attack Surface, Defense in Depth, Trust Boundaries |
Troubleshooting | Bottom-Up, Top-Down, Binary Search, Parallelism, Caches, What's Changed |
Models support multi-facet categories via a categories array in YAML, allowing a single model to appear in multiple categories.
Strategies (8)
Strategies guide the LLM toward the right categories for a given task. Each strategy defines a concern map — a list of domains (matching category names) with a focus question and weight (required, conditional, optional). Strategies work for any system — code, infrastructure, pipelines, platforms, or design documents. Strategy-to-model validation runs at startup, ensuring concern domains match actual category names.
Strategy | Description |
system-design | Designing or evaluating system architecture, infrastructure, or design documents |
code-review | Reviewing code changes for structural and operational issues |
incident-investigation | Diagnosing production incidents |
post-mortem | Systemic analysis after incidents — feedback loops, structural weaknesses, incentive misalignments |
security-audit | Evaluating security posture |
capacity-planning | Planning for load, growth, and resource constraints |
technical-decision | Evaluating build/buy, migration, and technology choices |
codebase-understanding | Building a mental model of an unfamiliar system or area of code |
Custom models
Add your own models via --models-dir. Custom models with the same ID as built-in models override them.
{
"mcpServers": {
"systems-thinking": {
"type": "stdio",
"command": "npx",
"args": ["-y", "systems-thinking-mcp", "--models-dir", "/path/to/models"]
}
}
}Models are YAML files in category subdirectories. See models/ for the format.
Environment variables
DISABLE_THOUGHT_LOGGING=true— suppress stderr logging
Available Tools
5 toolsapply_lensApply LensA
Apply a systems thinking model to the current problem.
IMPORTANT: The "analysis" parameter is your narrative analysis text. The "findings" parameter is a JSON object where keys are the model's required field names and values are your findings for each. Do NOT pass finding fields as top-level parameters — they must be nested inside the "findings" object.
Example call structure: { "sessionId": "abc123", "modelId": "stock-and-flow", "analysis": "Your narrative analysis through this lens...", "findings": { "stocks": "Your finding about stocks...", "inflows": "Your finding about inflows...", "outflows": "Your finding about outflows...", "equilibrium_analysis": "Your finding about equilibrium..." } }
Available models: blast-radius (Blast Radius), contract-boundaries (Contract Boundaries), conways-law (Conway's Law), coupling-cohesion (Coupling & Cohesion), data-transformation-fidelity (Data Transformation Fidelity), error-propagation (Error Propagation), failure-modes (Failure Modes), idempotency (Idempotency), kiss (KISS), modularity (Modularity), separation-of-concerns (Separation of Concerns), state-ownership (State Ownership), causal-loop-diagrams (Causal Loop Diagrams), feedback-loops (Feedback & Feedforward Loops), local-vs-global (Local vs Global Optimization), source-sink (Source & Sink), stock-and-flow (Stock & Flow), system-dynamics (System Dynamics), buffers (Buffers & Buffer Sizing), constraints (Constraint Analysis), leverage-points (Leverage Points), migration (Migration), queuing-theory (Queuing Theory), domain-modeling (Domain Modeling Lens), event-driven (Event-Driven Lens), functional (Functional Lens), adversarial (Adversarial Analysis), build-vs-buy (Build vs. Buy), circle-of-competence (Circle of Competence), dependency-risk (Dependency Risk), goodharts-law (Goodhart's Law), hanlons-razor (Hanlon's Razor), inversion (Inversion), map-vs-territory (Map vs Territory), margin-of-safety (Margin of Safety), occams-razor (Occam's Razor), reversibility (Reversibility), second-order-thinking (Second-Order Thinking), back-pressure (Back Pressure), error-budgets (Error Budgets), graceful-degradation (Graceful Degradation), observability-gaps (Observability Gaps), operational-complexity (Operational Complexity), denormalization (Denormalization), normalization (Normalization), attack-surface (Attack Surface), cia-triad (CIA Triad), defense-in-depth (Defense in Depth), least-privilege (Principle of Least Privilege), trust-boundaries (Trust Boundaries), binary-search (Binary Search), bottom-up (Bottom-Up), caches (Caches), parallelism (Parallelism), top-down (Top-Down), whats-changed (What's Changed)
IMPORTANT: Do NOT stop after one lens. Apply 2-4 lenses per session to get genuine multi-perspective insight. The response includes prior findings from earlier lenses — use these to identify connections and build on previous analysis. When you've built enough perspective, call synthesize to integrate across lenses.
Can be called multiple times per session. Allowed after synthesize.
| Name | Required | Description | Default |
|---|---|---|---|
| modelId | Yes | Model to apply (e.g. 'queuing-theory', 'bottom-up') | |
| analysis | Yes | Your analysis through this lens | |
| findings | Yes | Model-specific findings keyed by required field names | |
| nextLens | No | Which lens you want to apply next | |
| sessionId | Yes | Session ID from start_analysis | |
| confidence | No | Confidence in this analysis | |
| observations | No | Emergent insights outside the model template |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full transparency burden. It discloses critical behavioral traits: the 'analysis' parameter is narrative, 'findings' must be nested as a JSON object, and the response includes prior findings from earlier lenses (stateful behavior). It also notes ordering constraints ('Allowed after synthesize') and that it can be called multiple times, all beyond what the schema conveys.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is long but well-structured, with important usage notes and examples front-loaded. Every section adds value: purpose, critical parameter instructions, example, model reference, and usage lifecycle guidance. The exhaustive model list is arguably necessary for selection, but it does add bulk, preventing a perfect score.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema and complex nesting requirements, the description covers all essential aspects: how to structure calls, what parameters mean, which models are available, and how the tool fits into the session flow. The only gap is an explicit description of the response format beyond the note that it includes prior findings, but overall completeness is high.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Although schema coverage is 100%, the description adds significant meaning beyond the structured definitions. It clarifies the distinction between 'analysis' and 'findings', explains that findings keys must match the model's required field names, and provides a full example call. The extensive model list in the description also expands on the generic 'Model to apply' schema hint, making parameter selection much easier.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb+resource: 'Apply a systems thinking model to the current problem.' It clearly distinguishes from siblings by noting it applies one lens, while 'synthesize' is for integrating across lenses. The tool's role in the session lifecycle ('Can be called multiple times per session. Allowed after synthesize.') further clarifies its placement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance is provided on when to use the tool ('Apply 2-4 lenses per session') and when to use an alternative ('When you've built enough perspective, call synthesize to integrate across lenses'). The description also tells users not to stop after one lens and warns against passing findings as top-level parameters, offering a concrete example call structure.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
expand_selectionExpand SelectionA
Get full details for selected models plus their graph neighbors and counterbalances.
Call after start_analysis with the model IDs you've chosen. Returns:
Full model details (guiding questions, required fields) for your selection
Graph neighbors (related models one hop away) with relationship reasons
Counterbalances (opposing perspectives) with tension descriptions
Uncovered categories to highlight analytical gaps
Use this to review your selection before committing to apply_lens calls.
| Name | Required | Description | Default |
|---|---|---|---|
| modelIds | Yes | Model IDs to expand (e.g. ['modularity', 'coupling-cohesion']) | |
| sessionId | Yes | Session ID from start_analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It thoroughly lists the return payload (full details, graph neighbors, counterbalances, uncovered categories), making clear it's a read/expansion operation. It doesn't explicitly state that no state is modified, but the language strongly implies it's informational.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and well-organized. The opening sentence states the core purpose, followed by a bulleted list of return types. Every sentence serves a purpose, and the structure aids scanning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with two straightforward parameters, no annotations, and no output schema, the description is complete. It explains what the tool returns (via bullets) and where it fits in the workflow, providing sufficient context for the agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the two parameters, and both are described adequately in the schema. The description adds only contextual reinforcement ('after start_analysis' for sessionId, 'models you've chosen' for modelIds), not new parameter-level semantics, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Get full details for selected models plus their graph neighbors and counterbalances.' It uses a specific verb ('get') and resource ('selected models plus graph neighbors'), and distinguishes itself from siblings by positioning it between start_analysis and apply_lens.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit workflow guidance is given: 'Call after start_analysis with the model IDs you've chosen' and 'Use this to review your selection before committing to apply_lens calls.' This unambiguously tells when to use the tool relative to alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_strategyGet StrategyA
Get a predefined analysis strategy. Strategies define which concerns to cover and how to approach them, without prescribing specific models.
Available strategies: capacity-planning (Capacity Planning), code-review (Code Review), codebase-understanding (Codebase Understanding), incident-investigation (Incident Investigation), post-mortem (Post-Mortem), security-audit (Security Audit), system-design (System Design), technical-decision (Technical Decision)
Call without strategyId to list all strategies. Call with a strategyId to get the concern map.
Strategies work for any system — code, infrastructure, pipelines, platforms, or design documents. For example, system-design applies equally to a Kubernetes migration plan as to a code architecture spec.
USAGE: Get a strategy, then for each concern: evaluate relevance to your specific problem, use expand_selection with models from that concern's domain, pick appropriate lenses, and apply them. Concerns marked "required" should always be evaluated. "Conditional" concerns depend on the scale and nature of the change. Each concern can be run in parallel as an independent analysis track.
| Name | Required | Description | Default |
|---|---|---|---|
| strategyId | No | Strategy ID to retrieve (e.g. 'code-review'). Omit to list all available strategies. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the two invocation modes and their outputs (list vs. concern map), notes that strategies are model-agnostic, and even mentions parallel execution. It does not explicitly state the read-only nature, but 'Get' and 'predefined' strongly imply no side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is longer than average but well-structured: front-loaded purpose, a necessary list of strategies (since no enum exists), and a clearly labeled USAGE section. Every sentence delivers useful information, though a slightly tighter presentation would be possible.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given one optional parameter, no annotations, and no output schema, the description is remarkably complete. It explains both call modes, what the result contains (list or concern map), how to interpret concerns, and how to proceed with sibling tools, providing sufficient context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides a description for strategyId, but the tool description adds the complete list of valid strategy IDs and clarifies the behavior when omitted (list all). This goes far beyond the schema baseline, giving the agent all acceptable values directly.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb and resource: 'Get a predefined analysis strategy.' It clearly defines what strategies are and distinguishes the tool from siblings by positioning it as the entry point for retrieving strategy definitions rather than executing analysis steps.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly explains when to call with vs. without strategyId, and provides a detailed usage workflow referencing sibling tools (expand_selection, apply_lens) as subsequent steps. It also clarifies that strategies apply to any system and explains the meaning of 'required' vs. 'conditional' concerns.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
start_analysisStart AnalysisA
Begin a systems thinking analysis session. Returns model clusters organized by category for you to review and select from.
BEFORE calling this, consider whether a predefined strategy fits your use case. Call get_strategy (with no arguments) to see available strategies.
THE EXPECTED WORKFLOW IS:
start_analysis → review clusters, pick relevant models
expand_selection → get full details + graph neighbors for your picks
apply_lens (2-4 times) → apply your chosen lenses
synthesize → integrate findings
The value is in COMPOSING multiple perspectives. Apply at least 2-3 lenses before synthesizing.
| Name | Required | Description | Default |
|---|---|---|---|
| scope | No | What is in or out of bounds for this analysis | |
| context | No | System description, constraints, environment | |
| problem | Yes | What are we analyzing or troubleshooting? |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden for behavioral disclosure. It states the tool 'Returns model clusters organized by category,' which indicates a read-like output. It also describes the iterative workflow and emphasizes composing multiple perspectives. However, it does not explicitly address whether the tool has side effects (e.g., creating persistent session state) or require any specific permissions, leaving a small transparency gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded: it opens with the core purpose, then provides a decision point about get_strategy, followed by a clear numbered workflow. Every sentence contributes value, and the length is appropriate for the tool's complexity. It avoids fluff and repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's role as an entry point to a multi-step analysis process, the description provides complete context: what it returns, how it fits into the larger workflow, and a best-practice recommendation (apply at least 2-3 lenses). No output schema exists, but the description gives a sufficient high-level view of the result. The workflow context makes it easy for an agent to use this tool appropriately.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for all three parameters (scope, context, problem), each with a clear textual description. The tool description does not add additional semantics beyond the schema, but it also does not need to. Per the rubric, baseline 3 applies when schema coverage is high and description provides no extra parameter detail.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function: 'Begin a systems thinking analysis session' and specifies the immediate outcome: 'Returns model clusters organized by category.' It differentiates from siblings by positioning it as the first step in a defined workflow, distinct from expand_selection, apply_lens, synthesize, and get_strategy.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance is provided: 'BEFORE calling this, consider whether a predefined strategy fits your use case. Call get_strategy...' It also outlines the complete expected workflow with numbered steps, making it clear when to use this tool and when to use alternatives. This is strong, non-ambiguous usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
synthesizeSynthesizeA
Synthesize findings across all applied lenses into a unified view. This is the payoff — where cross-lens connections become actionable insight.
Call after applying 2+ lenses. Your synthesis should integrate findings across lenses: where did different perspectives agree (reinforcing confidence), where did they contradict (revealing tension), and what gaps remain? The best syntheses surface connections that no single lens would have found.
Provide concrete, actionable recommendations grounded in the multi-lens evidence. Note contradictions explicitly — they often point to the most important design tensions. Note gaps — they suggest which lenses to apply next if deeper analysis is needed.
The session stays open after synthesis. If the synthesis reveals gaps, apply more lenses and synthesize again.
| Name | Required | Description | Default |
|---|---|---|---|
| gaps | No | What was not examined | |
| sessionId | Yes | Session ID from start_analysis | |
| synthesis | Yes | Cross-lens integration of findings | |
| contradictions | No | Where lenses disagreed | |
| recommendations | Yes | Actionable outcomes from the analysis |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses key behavioral traits: the session stays open after synthesis, contradictions should be noted, and gaps suggest next steps. This goes beyond a generic 'synthesizes' statement.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and front-loaded with the purpose. It is a bit lengthy with multiple paragraphs, but each sentence provides useful guidance with little fluff, so it remains appropriately concise for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description thoroughly covers the tool's purpose, use timing, and behavior, and the input schema is complete. The only minor gap is that it does not explicitly describe the tool's return value or output, which matters because there is no output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, giving a baseline of 3. The description adds meaning by explaining what should go into `synthesis`, `contradictions`, `gaps`, and `recommendations` (e.g., agreement, contradiction, gaps), enriching the schema's short descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Synthesize findings across all applied lenses into a unified view.' This clearly distinguishes it from sibling tools like start_analysis and apply_lens, which have different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says to call after applying 2+ lenses, and it advises what to do if gaps remain (apply more lenses and synthesize again). While it doesn't explicitly mention alternatives like get_strategy, the usage condition is clear and well contextualized.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
5 tool updates
v0.1.0- First observed
apply_lens - First observed
expand_selection - First observed
get_strategy - First observed
start_analysis - First observed
synthesize
TDQS
Each tool maps to a distinct stage in the analysis workflow: starting, selecting, applying, synthesizing, and strategizing. There is no functional overlap, and the descriptions clearly delineate when to call each.
Most tools follow a verb_noun snake_case pattern (start_analysis, expand_selection, apply_lens, get_strategy). 'synthesize' is a single verb, which is a minor deviation but still clear and predictable.
With 5 tools, the set is well-scoped for the server's purpose of guiding a multi-perspective systems thinking analysis. Each tool is essential and the count is within the ideal 3-15 range.
The tools cover the full analysis lifecycle from initialization to synthesis, and even provide strategic guidance through get_strategy. The workflow is complete with no obvious dead ends; sessions can be continued or reiterated as needed.
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
- causelyOAuthapp.causely
Causal reasoning for reliability: root cause, blast radius, and service health for agents.
Evidence-backed architecture-quality analysis for Python agent applications.
Public agentic AI doctrine tools plus authenticated architecture, design, and spec validators.
Vendor status pages, TLS cert inspection, DNS propagation checks, and incident-response playbooks.
Related MCP Servers
- AlicenseCqualityBmaintenanceProvides systematic thinking tools including mental models, design patterns, debugging approaches, and collaborative reasoning frameworks to enhance problem-solving and decision-making capabilities.1137MIT
- AlicenseNot gradedqualityDmaintenanceProvides structured thinking tools including mental models, design patterns, debugging approaches, decision frameworks, and multi-persona reasoning to enhance AI assistant problem-solving capabilities.25MIT
- 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.121768MIT
- AlicenseBqualityDmaintenanceProvides AI systems with structured thinking frameworks and reasoning tools to maintain consistent problem-solving patterns across conversations. Enables multi-step reasoning, decision analysis, and systematic troubleshooting through invocable mental models.153319MIT
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/davidpanter/systems-thinking'
If you have feedback or need assistance with the MCP directory API, please join our Discord server