governance-mcp-server
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., "@governance-mcp-serverWhat are the 5 core principles?"
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.
governance-mcp-server
MCP server for querying the DodaOne governance framework.
Overview
This MCP server wraps the Governance Query Service, enabling any MCP-compatible client (Claude Code, Claude Desktop, etc.) to query governance documents and evaluate proposed actions against the governance framework.
Related MCP server: quads-mcp
Installation
From npm (once published)
Add to your MCP client configuration:
{
"mcpServers": {
"dodaone-governance": {
"command": "npx",
"args": ["-y", "@dodaone/governance-mcp-server"],
"env": {
"GQS_API_KEY": "your-api-key-here"
}
}
}
}Local Development
git clone <repo-url>
cd governance-mcp-server
pnpm install
pnpm buildThen configure your MCP client:
{
"mcpServers": {
"dodaone-governance": {
"command": "node",
"args": ["/path/to/governance-mcp-server/dist/index.js"],
"env": {
"GQS_API_KEY": "your-api-key-here"
}
}
}
}Configuration
Environment Variables
Variable | Required | Description |
| Yes | API key for the Governance Query Service |
Tool: query_governance
Query the DodaOne governance framework.
Parameters
Parameter | Type | Required | Description |
| string | Yes | The main query text |
| string | Yes |
|
| array | No | For comparing options (operational queries) |
| object | No | Additional context (division, action_description) |
Query Types
Informational: Retrieve factual information from governance documents.
{
"query": "What are the 5 core principles?",
"query_type": "informational"
}Operational: Evaluate proposed actions against the governance framework.
{
"query": "Should I get my haircut at a salon or do it myself?",
"query_type": "operational",
"subqueries": [
{ "text": "Getting haircut at a professional salon", "option_key": "salon" },
{ "text": "Cutting hair myself at home", "option_key": "diy" }
],
"context": {
"division": "dodaself",
"action_description": "Personal grooming decision"
}
}Response
Returns the full JSON response from the Governance Query Service, including:
Classification (SOLID/FUZZY/NOVEL)
Alignment scores
Reasoning
Citations
License
MIT
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.
Latest Blog Posts
- 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/fefogarcia/dodaone-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server