UML Forge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| UMLFORGE_API_KEY | Yes | Your API key for UML Forge, obtained from https://umlforge.dev |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| umlforge_reverse_engineerA | Analyse an existing codebase and produce UML class, sequence, and state diagrams. USE THIS WHEN:
NOT FOR:
Produces:
Provide EITHER github_url OR codebase — not both. Args: github_url: Public GitHub URL. Accepted formats: github.com/owner/repo github.com/owner/repo/tree/branch/path/to/dir github.com/owner/repo/blob/branch/path/to/file.py codebase: Paste code directly when you have files in context or the repo is private. max_nodes: Max classes/components per diagram (default 20). report_mode: True → also produce an Architectural Intelligence Report. Pro/Team/Enterprise only. |
| umlforge_stakeholder_archA | Generate a C4 architecture diagram for a mixed technical/non-technical audience. USE THIS WHEN:
NOT FOR:
Produces:
Args: system_description: What the system does, who uses it, its major components. audience_description: Who will read this (e.g. "CTO and non-technical board", "backend engineers new to the system"). report_mode: True → also produce Architecture Communication Notes. Pro/Team/Enterprise only. |
| umlforge_api_sequenceA | Diagram how services call each other for a specific user action or API flow. USE THIS WHEN:
NOT FOR:
Produces:
Args: services: All participants, e.g. "API Gateway, Auth Service, Order Service, Payment Provider, User DB". user_journey: The action to diagram in plain English, e.g. "User places an order through checkout". report_mode: True → also produce a Design Score report. Pro/Team/Enterprise only. |
| umlforge_state_machine | Design a state machine for a domain entity that has a lifecycle. USE THIS WHEN:
NOT FOR:
Produces:
Args: entity: The domain entity (e.g. "Order", "Subscription", "JobApplication"). states: Known lifecycle states (e.g. "pending, active, suspended, cancelled"). events: Triggers that cause transitions (e.g. "payment_received, user_cancels"). business_rules: Constraints on transitions (optional). report_mode: True → also produce State Machine Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_living_docsA | Update diagrams you already have to reflect what changed in a sprint or PR. USE THIS WHEN:
NOT FOR:
IMPORTANT: current_diagrams is REQUIRED — paste your existing Mermaid diagrams (including the ```mermaid fences). This tool cannot generate from scratch. Produces:
Args: current_diagrams: Your existing Mermaid diagram(s) — paste the full content including ```mermaid fences. REQUIRED. sprint_changes: What changed this sprint: new components, removed flows, renamed services, modified behaviour. affected_files: Files or modules touched in this sprint/PR (optional). report_mode: True → also produce Documentation Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_erd_schemaA | Design a database schema with ERD, integrity rules, and index recommendations. USE THIS WHEN:
NOT FOR:
Produces:
Args: domain_description: What the database stores (e.g. "E-commerce: users, products, orders, payments"). entities: Known entities and key attributes (e.g. "User(id, email, tier), Order(id, user_id, status, total)"). access_patterns: Most frequent read/write queries (optional — used for index recommendations). db_technology: Database technology (default: PostgreSQL). report_mode: True → also produce a Design Score report. Pro/Team/Enterprise only. |
| umlforge_threat_model | Generate a full STRIDE security threat model for a system. USE THIS WHEN:
NOT FOR:
Produces:
Args: system_description: What the system does, how users access it, main components. auth_mechanism: Auth in use (e.g. "JWT Bearer token", "API Key", "OAuth2 + PKCE"). trust_boundaries: Boundary crossings (e.g. ["public internet → API", "API → database"]) (optional). sensitive_data: Sensitive data types (e.g. ["user emails", "payment tokens"]) (optional). compliance_framework: Compliance scope (e.g. "GDPR", "NDPA 2023", "PCI-DSS") (optional). report_mode: True → also produce a Security Assessment Report. Pro/Team/Enterprise only. |
| umlforge_frontend_componentsA | Design a frontend component tree and interaction flow for a UI feature. USE THIS WHEN:
NOT FOR:
Produces:
Args: feature_description: The UI feature or page to diagram. framework: Frontend framework (default: React). state_management: State approach — Redux, Zustand, Context API, Pinia (optional). interactions: Key user interactions (optional — improves sequence diagram). report_mode: True → also produce Component Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_event_driven | Design an event-driven or async messaging architecture (Kafka, SQS, RabbitMQ, etc.). USE THIS WHEN:
NOT FOR:
Produces:
Args: system_context: What this event-driven system does and why it uses messaging. producers: Services that emit events (e.g. "Order Service emits order.placed"). consumers: Services that consume events (e.g. "Notification, Inventory, Analytics"). broker: Message broker (e.g. "Kafka", "RabbitMQ", "AWS SQS/SNS") (optional). events: Named domain events (e.g. "order.placed, payment.failed") (optional). report_mode: True → also produce Event System Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_onboarding | Create a day-one knowledge-transfer package for a developer joining a team. USE THIS WHEN:
NOT FOR:
Produces:
Args: system_description: High-level description of the system. tech_stack: Technologies in the stack (e.g. "FastAPI, PostgreSQL, React, Railway"). key_workflows: 2–3 flows a new developer must understand first. pain_points: Known gotchas, non-obvious decisions (optional). report_mode: True → also produce Onboarding Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_ai_agentA | Design an AI agent pipeline or multi-agent orchestration system. USE THIS WHEN:
NOT FOR:
Produces:
Args: pipeline_purpose: What the agent system does (e.g. "Research pipeline that queries the web and drafts a report"). agents: Agents and their roles (e.g. "Planner [claude-opus-4], Researcher [claude-sonnet-4]"). tools_available: Tools agents can call (e.g. "web_search, execute_code") (optional). orchestration_approach: Coordination strategy — sequential, DAG, hierarchical, parallel fan-out (optional). memory_strategy: Memory approach — shared context, vector memory, Redis, none (optional). report_mode: True → also produce Agent Pipeline Analysis Notes. Pro/Team/Enterprise only. |
| umlforge_deployment | Generate a deployment topology and CI/CD pipeline diagram. USE THIS WHEN:
NOT FOR:
Produces:
Args: system_name: Name of the system (e.g. "UML Forge API"). cloud_provider: Cloud provider(s) (e.g. "AWS", "Railway + Vercel", "GCP"). environments: Deployment environments (e.g. "development, staging, production"). services: Services and infrastructure (e.g. "FastAPI API, Next.js, PostgreSQL, Redis"). cicd_tool: CI/CD tool (e.g. "GitHub Actions", "GitLab CI") (optional). report_mode: True → also produce an Infrastructure Health Report. Pro/Team/Enterprise only. |
| umlforge_suggestA | *** START HERE if you are unsure which tool to use. *** Describe what you want to achieve in plain English. This tool will:
USE THIS WHEN:
Example inputs:
The response will include the exact tool name, all parameters pre-filled with values derived from your description, and a one-line explanation. Args: task_description: Plain-English description of what you want to achieve. Include any relevant details: URLs, entity names, service names, tech stack — the more context, the better the pre-filled parameters. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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/dave1362/umlforge-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server