GodPrompt MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_god_promptA | Returns the complete GodPrompt.md — a single-file universal system prompt for AI software development (41KB, ~1145 lines). Use this when you want the full payload in one shot. For progressive disclosure (smaller context), use get_core_skill and the reference tools instead. |
| get_core_skillA | Returns SKILL.md — the core protocol that should be loaded on every message. This is the lean base context (~11KB) covering the universal 6-phase protocol, Three Iron Laws, and task auto-classification. Start here for progressive disclosure. |
| get_protocolsA | Returns references/01-PROTOCOLS.md — deep execution guides for each task type (BUILD, DEBUG, REFACTOR, CONTENT, DESIGN, SHIP, ANALYZE, AUTOMATE, PLAN). Load this when the task requires detailed protocol steps beyond the core skill. ~13KB. |
| get_gatesA | Returns references/02-GATES.md — verification checklists, THE GATE (pre-completion verification), and structured report templates for every deliverable type. Load when you need to verify work before claiming completion. ~9KB. |
| get_anti_patternsA | Returns references/03-ANTI-PATTERNS.md — red flags, rationalizations, and recovery patterns. Covers the 10 most dangerous anti-patterns that lead to broken code, scope creep, and false confidence. Load when you catch yourself rationalizing. ~9KB. |
| classify_taskA | Classify a task description into one of GodPrompt's 9 task types (BUILD, DEBUG, REFACTOR, CONTENT, DESIGN, SHIP, ANALYZE, AUTOMATE, PLAN) and return the matching protocol name. Useful for routing tasks through the right workflow. |
| get_versionA | Returns the current GodPrompt version and a summary of what's included. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool serves a distinct purpose: retrieving specific reference documents (gates, anti-patterns, protocols, core skill, full prompt), classifying tasks, and checking version. No overlapping functionality.
All tool names follow a consistent verb_noun pattern in snake_case: get_* for retrieval and classify_task for classification. Predictable and uniform.
Seven tools is well-scoped for a server that provides progressive disclosure of reference materials plus a classification utility. Each tool has a clear role without redundancy.
The tool set covers the full lifecycle of using GodPrompt: loading core context, accessing deep protocols, verification gates, anti-patterns, full prompt, task classification, and version info. No obvious gaps for the stated purpose.