Skip to main content
Glama

🏛️ Boardroom MCP

AI Governance-as-a-Service — Model Context Protocol Server

MIT License npm MCP

Give your AI agents a boardroom of advisors. Based on Napoleon Hill's Mastermind Principle — the idea that coordinated minds produce intelligence no single mind can achieve — digitized for AI agents.

Multi-advisor debate, institutional memory, trust scoring, and cognitive governance — all running locally on your machine.

📖 Read the Full Documentation →

Complete guide covering Quick Start → Installation → 5 Tools → Use Cases → Protocol Files → Building Councils → Debate Protocols → Cognitive Drills → Mind Versioning → Architecture → Full System.


Related MCP server: deep-thinking-engine

⚡ Quick Start — Pick Your Platform

Prerequisites: Node.js 18+ must be installed. Check with node --version.


🟣 Claude Desktop

Step 1: Open your config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Step 2: Paste this (create the file if it doesn't exist):

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Step 3: Restart Claude Desktop completely (quit and reopen).

Step 4: Test it — type this in the chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

Step 5: See what's available — type this in the chat:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🟢 Claude Code (CLI)

Option A — One command (recommended):

claude mcp add boardroom -- npx -y boardroom-mcp

Option B — Config file: Create .mcp.json in your project root:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Test it — type this in Claude Code:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🔵 Cursor

Step 1: Open Settings → MCP (or create .cursor/mcp.json in your project root)

Step 2: Add this server config:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Step 3: Restart Cursor.

Test it — type in Cursor chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🟡 Windsurf

Step 1: Open Settings → MCP or create .windsurf/mcp.json in your project root.

Step 2: Add this server config:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Step 3: Restart Windsurf.

Test it — type in Windsurf chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🔷 VS Code (GitHub Copilot)

Requires GitHub Copilot with agent mode enabled.

Step 1: Enable MCP: Settings → Copilot → MCP (toggle on).

Step 2: Create .vscode/mcp.json in your project root:

{
  "servers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

⚠️ Note: VS Code uses "servers" — NOT "mcpServers". This is different from all other platforms.

Step 3: Reload VS Code window (Ctrl+Shift+P → "Reload Window").

Test it — type in Copilot Chat (Agent mode):

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

⚫ ChatGPT Desktop

Requires ChatGPT Plus or Pro subscription.

Step 1: Open ChatGPT Desktop → Settings → Developer → Connectors.

Step 2: Click "Add Custom MCP Server" and paste:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Step 3: Enable the "boardroom" connector in your chat.

Test it — type in the chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🟠 OpenAI Codex CLI

Option A — One command (recommended):

codex mcp add boardroom -- npx -y boardroom-mcp

Option B — Config file: Add to ~/.codex/config.toml:

[mcp_servers.boardroom]
type = "stdio"
command = "npx"
args = ["-y", "boardroom-mcp"]

Test it — type in Codex CLI:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🔴 Antigravity

Create .mcp.json in your workspace root:

{
  "mcpServers": {
    "boardroom": {
      "command": "npx",
      "args": ["-y", "boardroom-mcp"]
    }
  }
}

Test it — type in the chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

🦞 OpenClaw

OpenClaw uses its skills system instead of MCP server configs.

Step 1: Clone and build the server:

git clone https://github.com/randysalars/boardroom-mcp.git
cd boardroom-mcp && npm install && npm run build

Step 2: Create the skill directory:

mkdir -p ~/.openclaw/skills/boardroom

Step 3: Create ~/.openclaw/skills/boardroom/SKILL.md:

---
name: boardroom
description: Boardroom Mastermind Council — multi-advisor strategic analysis via MCP server.
metadata: {"clawdbot":{"emoji":"🏛️","always":true,"requires":{"bins":["node"]},"primaryEnv":"BOARDROOM_ROOT"}}
---

# Boardroom MCP 🏛️

Multi-advisor strategic analysis. Run sessions via:

```bash
BOARDROOM_ROOT=~/.ai/boardroom node /path/to/boardroom-mcp/dist/index.js

Usage: "Board: Should I raise prices on my SaaS?"


**Step 4:** Add to `~/.openclaw/.env`:
```bash
BOARDROOM_ROOT=/path/to/your/.ai/boardroom

Step 5: Restart and verify:

systemctl --user restart openclaw-gateway.service
openclaw skills list | grep boardroom
# ✓ ready │ 📦 boardroom

Test it — type in the chat:

Use the analyze tool with task: "Test — is the Boardroom working?"

See what's available:

What Boardroom MCP tools do I have access to? List all 5 tools with a one-line description of each.

✅ What Success Looks Like

When the test prompt works, you'll see output like:

# Boardroom Analysis

## Advisors Consulted
- **Warren Buffett** (Business Strategy): [their position]
- **Linus Torvalds** (Technology): [their position]
- **Marcus Aurelius** (Values & Ethics): [their position]

## Verdict
[synthesized recommendation]

## Recommended Actions
1. [action item]
2. [action item]

If you see this, it's working. Try a real question next:

Use the analyze tool with task: "Should I raise my SaaS price from $29 to $49?"

📖 Quick Command Reference

Copy-paste these prompts into your AI chat to use each tool:

What You Want

Prompt to Type

Full analysis

Use the analyze tool with task: "Should I build feature X or Y?"

Risk check

Use the check_governance tool with task: "Deploy to production on Friday"

Search past decisions

Use the query_intelligence tool with query: "pricing strategy"

Trust assessment

Use the trust_lookup tool for entity: "Stripe" with context: "payment processing"

Log an outcome

Use the report_outcome tool with decision: "Raised prices 30%" and outcome: "Revenue up 22%"

List all tools

What Boardroom MCP tools do I have? List all 5 with descriptions.


📦 Alternative Installation Methods

# Option A: npx (used by MCP configs above — no global install needed)
npx -y boardroom-mcp

# Option B: Global install
npm install -g boardroom-mcp
boardroom-mcp

# Option C: Clone and build (for development/contributing)
git clone https://github.com/randysalars/boardroom-mcp.git
cd boardroom-mcp && npm install && npm run build

Note: If npx fails, use Option C (clone and build), then point your MCP config to the local build:

{
  "mcpServers": {
    "boardroom": {
      "command": "node",
      "args": ["/path/to/boardroom-mcp/dist/index.js"]
    }
  }
}

🔧 5 MCP Tools

Tool

Purpose

analyze

Full boardroom consultation with multi-advisor debate

check_governance

Task classification + severity routing

query_intelligence

Search LEDGER decisions + Wisdom Codex

trust_lookup

6-dimension trust vector for any entity

report_outcome

Log outcomes for institutional memory

See detailed tool documentation with examples


🏗️ Architecture

Your AI Client (Claude, Cursor, Windsurf, VS Code, ChatGPT, Codex, Antigravity, OpenClaw)
         │ MCP Protocol (STDIO)
         │ Runs 100% on YOUR machine
         ▼
  Boardroom MCP Server
         │
         ├── demo/              ← Demo council (Buffett, Torvalds, Aurelius)
         │
         ▼
  ~/.ai/boardroom/          ← Full protocol files (optional upgrade)
  ├── LEDGER.md              ← Institutional memory
  ├── BOARD_WISDOM.md        ← Distilled principles
  └── mastermind/
      ├── seats/             ← Advisor definitions
      ├── councils/          ← Expert panels
      └── protocols/         ← Debate rules

Zero cost. No API keys. No cloud. No hosting. Your AI client does the LLM processing.


🎯 What You Get

Free (This Repo)

  • ✅ MCP server with 5 tools

  • ✅ Demo council (3 named advisors: Warren Buffett, Linus Torvalds, Marcus Aurelius)

  • ✅ MIT license

Full System (salars.net/boardroom)

  • 🏛️ 450+ named advisors with calibrated seat cards (Buffett, Torvalds, Aurelius...)

  • 🏛️ 38 expert councils (Tech, Business, Survival, Legal, Creative...)

  • ⚔️ 5 debate resolution types

  • 🧠 10 cognitive drills

  • ⏳ Mind Versioning (Young Jobs vs Late Jobs)

  • 🔥 Prometheus Protocol (forge new domains on the fly)

  • 👁️ Meta-Observer (real-time bias detection)

  • 📚 69+ LEDGER decisions as precedent library

  • 📖 113+ Wisdom Codex entries

  • 🎯 Smart Router (auto-detects council + severity)


⚙️ Environment Variables

Variable

Default

Description

BOARDROOM_ROOT

~/.ai/boardroom

Path to your full protocol files directory

BOARDROOM_TRUST_PATH

~/.boardroom/trust-oracle.json

Path to trust oracle data file


🔍 Troubleshooting

The AI ignores my prompt and doesn't use the tool

This is the #1 issue. It means the MCP server isn't loaded. Fix it:

  1. Did you restart? Every platform requires a restart after editing the config. Quit completely and reopen.

  2. Is the config in the right file? Double-check the file path for your platform (see Quick Start above).

  3. Is the JSON valid? No trailing commas, no comments. Use jsonlint.com to validate.

  4. Is Node.js 18+ installed? Run node --version in your terminal. Must be 18.0.0 or higher.

  5. VS Code users: You need "servers" not "mcpServers" — VS Code uses a different format.

The AI says "boardroom-mcp not found" or npx fails

# Verify the package exists
npm view boardroom-mcp version

# If that works but npx doesn't, clear cache:
npx clear-npx-cache
npx -y boardroom-mcp

# Nuclear option — install globally:
npm install -g boardroom-mcp

Then update your config to use the global install:

{
  "mcpServers": {
    "boardroom": {
      "command": "boardroom-mcp"
    }
  }
}

"No advisors found" in the output

The demo council file isn't being found. This means the package installed but can't find demo/seats.md.

# Check if the demo file exists in the package
npx -y boardroom-mcp --help 2>/dev/null
ls $(npm root -g)/boardroom-mcp/demo/

If the demo directory is missing, reinstall: npm install -g boardroom-mcp

ENOENT errors

You're pointing at a BOARDROOM_ROOT directory that doesn't exist:

# Check what path it's looking for
echo $BOARDROOM_ROOT

# Create it or unset the variable:
unset BOARDROOM_ROOT  # falls back to demo council

Tools appear but return errors

# Test the server directly in your terminal:
npx -y boardroom-mcp

# If it starts without errors, the MCP server works.
# The issue is in your AI client's connection to it.
# Try removing and re-adding the MCP config.

Claude Code specific: "MCP server failed to start"

# Remove and re-add:
claude mcp remove boardroom
claude mcp add boardroom -- npx -y boardroom-mcp

# Verify it's registered:
claude mcp list

Permission errors on macOS

# If npx can't write to the cache:
sudo chown -R $(whoami) ~/.npm
npm cache clean --force

Platform-specific config cheat sheet

Platform

Config File

Key Name

Restart Method

Claude Desktop

claude_desktop_config.json

mcpServers

Quit + reopen app

Claude Code

.mcp.json or claude mcp add

mcpServers

Auto-reloads

Cursor

.cursor/mcp.json or Settings → MCP

mcpServers

Restart Cursor

Windsurf

.windsurf/mcp.json or Settings → MCP

mcpServers

Restart Windsurf

VS Code

.vscode/mcp.json

⚠️ servers

Reload Window

ChatGPT Desktop

Settings → Developer → Connectors

mcpServers

Toggle connector

Codex CLI

~/.codex/config.toml or codex mcp add

mcp_servers (TOML)

Auto-reloads

Antigravity

.mcp.json

mcpServers

Auto-reloads

OpenClaw

~/.openclaw/skills/boardroom/SKILL.md

Skills system

Restart gateway


📬 Stay in the Loop


🤝 Contributing

PRs welcome! Areas we'd love help with:

  • Additional demo advisors

  • New cognitive drill templates

  • Documentation improvements

  • Bug fixes


📄 License

MIT — Built by SalarsNet

Available Tools

5 tools
analyzeA

Run a Boardroom consultation. Routes your question to relevant advisors, loads their philosophies and decision criteria, searches institutional memory for precedents, and provides a structured analysis with mandatory tension between opposing viewpoints. Demo mode includes 3 named advisors; full protocol files unlock 450+ advisors across 38 councils.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesThe decision, question, or task to analyze

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It reveals the tool's multi-step internal behavior (routes, loads, searches, provides structured analysis) and important context like mandatory tension and demo/full mode differences. This goes beyond the bare 'analyze' name and gives a good sense of what the tool does internally, though it stops short of stating side effects or return structure explicitly.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with 'Run a Boardroom consultation.' The first sentence efficiently lists the core actions, and the second adds relevant mode distinctions. Every sentence contributes value with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has one well-documented parameter and no output schema, the description is largely complete. It explains the internal process and demo/full protocol modes, giving sufficient context for an agent to invoke it. However, it does not describe the return value structure beyond 'structured analysis,' which is a minor gap for such a high-level consultation tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%: the only parameter 'task' is described as 'The decision, question, or task to analyze.' The description's mention of 'your question' adds no new semantic detail beyond the schema. Since the schema already fully documents the parameter, a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Run a Boardroom consultation' and enumerates the specific steps (routing questions, loading philosophies, searching precedents, structured analysis). This is a specific verb+resource with enough detail to distinguish it from sibling tools like check_governance or query_intelligence.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for decisions/questions and describes the internal routing process, but it does not explicitly state when to use this tool versus alternatives or provide exclusions. The phrase 'your question' suggests the intended input, but no clear 'use this when' guidance is offered.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

check_governanceA

Classify a task and determine which governance advisors should review it. Returns the decision type, selected advisors, risk level, and whether constitutional constraints apply. Fast classification without running the full session.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesThe task or decision to classify

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden. It discloses the return values and the 'fast classification' behavior, but does not explicitly state whether the tool is read-only, requires authentication, or has any side effects. It adds some behavioral context but leaves room for ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the primary action, and every sentence adds value. It lists outputs and a key differentiator (speed) without unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simplicity (one parameter, no output schema), the description is fairly complete: it states the purpose, lists the return types, and notes the speed advantage. It would benefit from explicit guidance on usage versus alternatives, but overall it covers the essential context for this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter 'task' is already described in the schema with the same phrasing ('The task or decision to classify'). The description adds little beyond the schema, but it does imply that the task is used to produce governance outputs. With 100% schema coverage, no additional compensation is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool classifies a task and determines governance advisors for review, with a specific list of outputs (decision type, advisors, risk level, constitutional constraints). It uses a specific verb ('classify') and resource ('governance advisors'), distinguishing it from siblings like query_intelligence or analyze.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context on when to use this tool ('Fast classification without running the full session'), implying it is a quicker alternative to a full governance session. However, it does not explicitly name alternative tools or state when not to use it, so it lacks explicit exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

query_intelligenceA

Search the Boardroom LEDGER (persistent decision memory) and Wisdom Codex for relevant precedents, past decisions, and distilled insights. Returns keyword-matched results with timestamps and excerpts. The LEDGER grows each time you use report_outcome.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results to return
queryYesThe search query — topic, keyword, or question

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description carries the burden. It discloses the output format (keyword-matched results with timestamps and excerpts) and the LEDGER growth from report_outcome. However, it does not explicitly state that the tool is read-only or that it has no side effects, relying on the word 'search' to imply this.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences front-load the purpose, then add useful behavioral context without any fluff. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple 2-parameter schema and no output schema, the description adequately explains the data source, result format, and data population via report_outcome. It lacks explicit read-only status and ordering/pagination details, but these are minor given the tool's simplicity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds context about the search target (LEDGER and Wisdom Codex) and result content, but does not add syntax or format details for query and limit beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches the Boardroom LEDGER and Wisdom Codex for precedents, past decisions, and insights, with a specific verb and resource. This distinguishes it from siblings like report_outcome (which writes) and analyze (which likely analyzes current data).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives is provided. The description implies use for searching past decisions but does not mention check_governance, trust_lookup, report_outcome, or analyze, nor any exclusions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

report_outcomeA

Report the outcome of a decision for the Boardroom learning system. Records what happened, whether the original recommendation was followed, and what was learned. Feeds the Knowledge Flywheel and updates the Trust Oracle if an entity is specified. Returns a warning if the outcome could not be persisted to disk.

ParametersJSON Schema
NameRequiredDescriptionDefault
taskYesThe original task or decision
entityNoOptional entity (agent, tool, vendor) whose trust profile should be updated based on this outcome
outcomeYesWhat actually happened — result, success/failure, learnings
followedRecommendationNoWhether the Boardroom recommendation was followed

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and does well by disclosing side effects (feeds Knowledge Flywheel, updates Trust Oracle if entity specified) and a failure condition (returns warning if outcome could not be persisted). It does not cover auth, rate limits, or idempotency, which are useful but not essential for this tool's core behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three concise sentences, front-loaded with the main purpose and then adding side effects and error behavior. Every sentence provides distinct, necessary information with no redundant fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 4 parameters, no annotations, and no output schema, the description covers the core purpose, side effects, entity-conditional behavior, and failure warning. The only minor gap is that it does not describe the success return value, but this is not critical for invoking the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters. The description adds some context (e.g., entity triggers Trust Oracle update, followedRecommendation corresponds to whether the original recommendation was followed), but it does not significantly expand on the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb ('Report') and resource ('outcome of a decision for the Boardroom learning system'). It distinguishes itself from sibling tools like check_governance and trust_lookup by emphasizing the write/reporting nature and its side effects on the Knowledge Flywheel and Trust Oracle.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context for when to use the tool: to record a decision outcome, what happened, and whether the recommendation was followed. It also explains conditional behavior with entity. However, it does not explicitly mention exclusions or alternative sibling tools, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

trust_lookupA

Look up the trust profile for any entity (AI agent, tool, vendor, platform). Returns a 6-dimension trust vector (reliability, honesty, follow-through, outcome quality, stability, risk profile), composite score, and recommendation (trust/verify/caution/avoid). New entities return a default "unknown" profile — use report_outcome to build trust data over time.

ParametersJSON Schema
NameRequiredDescriptionDefault
entityYesThe entity to look up — an agent name, tool, vendor, or platform
contextNoOptional context about how you are using this entity

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose behavioral traits. It explains the return format (6-dimension vector, composite score, recommendation), and importantly discloses that new entities return a default 'unknown' profile, which is a key behavior. However, it does not mention any permissions, data source, or potential side effects, though for a read-only lookup these are less critical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three concise sentences, front-loaded with the main action, and no filler. Each sentence adds distinct value: what it does, what it returns, and the special case for new entities.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the absence of annotations and output schema, the description provides a thorough overview: purpose, return structure, recommendation values, and the default behavior for new entities. It also names the companion tool for building trust data. No critical missing information for a simple lookup tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema descriptions cover both parameters fully (100%), so the baseline is 3. The description does not add significant meaning beyond the schema; it echoes the entity types and context usage but offers no new details like format constraints or examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Look up' and identifies the resource as 'trust profile for any entity', enumerating the output components. It clearly differentiates from siblings like report_outcome (building trust) and check_governance (governance checks).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It states the primary use case (look up trust profile) and explicitly directs to 'report_outcome' for building trust data, providing an alternative and a when-not scenario. It also implies the tool is for lookup, not for governance or analysis.

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.

  1. 5 tool updatesv0.2.1
    • First observedanalyze
    • First observedcheck_governance
    • First observedquery_intelligence
    • First observedreport_outcome
    • First observedtrust_lookup

TDQS

A3.9/5.0

Scored across 5 tools

Disambiguation4/5

Each tool targets a distinct action: classification, search, trust lookup, outcome reporting, and full consultation. The only minor overlap is between query_intelligence and analyze, as both access institutional memory, but their purposes are clearly differentiated by analysis' routing to advisors.

Naming Consistency3/5

Tool names mix verb_noun patterns (check_governance, query_intelligence, report_outcome) with a noun_verb compound (trust_lookup) and a single verb (analyze). This is readable but not fully consistent, making the pattern less predictable than it could be.

Tool Count5/5

Five tools is well-scoped for a governance/consultation server, covering classification, memory search, trust evaluation, outcome feedback, and full analysis without redundancy. Each tool earns its place in the workflow.

Completeness4/5

The core lifecycle is covered: classify, analyze, query, report, and trust lookup are present, with feedback loops for learning. Minor gaps exist (e.g., no direct tool for editing governance protocols), but agents can work around this with the existing tools.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers