Skip to main content
Glama
delorenj

33GOD Pipeline MCP Hub

by delorenj

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

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

CapabilityDetails
tasks
{
  "list": {},
  "cancel": {},
  "requests": {
    "tools": {
      "call": {}
    },
    "prompts": {
      "get": {}
    },
    "resources": {
      "read": {}
    }
  }
}
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_domainsA

List the tool domains available in this hub. START HERE.

Each domain bundles many underlying tools that are intentionally NOT loaded into your context yet. Returns each domain's name, title, description, tool_count, and load status. To use a domain, call list_domain_tools(domain) to load its tool schemas, then invoke a tool with call_domain_tool(domain, tool, arguments).

list_domain_tools

Load and list the tools in a domain, each with its name, description, and input_schema.

Call this only for a domain you actually intend to use — it is what brings that domain's tool schemas into context. Then call call_domain_tool(domain, tool, arguments) to invoke a specific tool.

call_domain_toolA

Invoke a specific tool within a domain and return its result.

arguments is a JSON object that must conform to that tool's input_schema (from list_domain_tools(domain)). Example: call_domain_tool("plane", "list_projects", {})

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.9/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have completely distinct purposes: list_domains for discovery and call_domain_tool for invocation. No overlap at all.

Naming Consistency5/5

Both tools follow a consistent verb_noun snake_case pattern (list_domains, call_domain_tool), making them predictable and clear.

Tool Count4/5

With only 2 tools, the set feels thin, but for a hub server that delegates to domains, this minimal surface is acceptable and focused.

Completeness2/5

The hub is missing the list_domain_tools tool, which is advertised in list_domains' description. Without it, users cannot discover and invoke tools within domains, causing a critical gap.

Maintenance

ActivityMaintained
ResponsivenessNo issues