Skip to main content
Glama

Server Details

Create, browse, remix, collaborate on, and run durable AI workflow nodes from MCP hosts.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Jonnyton/Workflow
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.2/5 across 5 of 5 tools scored. Lowest: 2.6/5.

Server CoherenceA
Disambiguation5/5

Each tool has a distinct resource (graph/page) and action (read/run/write), with no overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent verb.resource pattern with lowercase and dot separation, making them easily predictable.

Tool Count5/5

Five tools is well-scoped for a workflow server, covering the essential operations without being too few or too many.

Completeness4/5

The set covers read, write, and run for graphs and pages, but lacks explicit delete operations, which is a minor gap.

Available Tools

5 tools
read.graphRead GraphB
Read-onlyIdempotent
Inspect

Read Workflow graph state without changing it.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoOptional comma-separated goal tag filter.
limitNoMaximum number of records to return.
queryNoOptional search text.
authorNoOptional goal author filter.
targetNoWhat to read: status, graphs, graph, goals, goal, or runs.status
goal_idNoOptional shared-goal identifier.
graph_idNoOptional graph/universe identifier.
run_statusNoOptional run status filter.
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the description adds minimal value by restating 'without changing it.' It does not disclose additional behaviors like performance, pagination, or return format, but does not contradict annotations.

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

Conciseness4/5

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

The description is a single, front-loaded sentence. While concise, it could be slightly more informative without losing brevity (e.g., mentioning key parameters). Still, it avoids wordiness.

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

Completeness2/5

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

For a read tool with 8 optional parameters and no output schema, the description is incomplete. It does not explain that the 'target' parameter switches between different aspects (status, graphs, goals) or how filters combine. The agent lacks critical context for correct invocation.

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 baseline is 3. The description adds no parameter-specific context beyond what the schema already provides; it does not explain how filters or target choices affect output.

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 reads graph state without mutation, using a specific verb and resource. It distinguishes from siblings like 'run.graph' (execution) and 'write.graph' (modification), and annotations further confirm read-only intent.

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?

The description provides no guidance on when to use this tool versus alternatives (e.g., 'run.graph' or 'write.graph'). There is no mention of context or exclusion criteria, leaving the agent without decision support.

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

read.pageRead PageB
Read-onlyIdempotent
Inspect

Read or search Workflow wiki pages.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoOptional wiki page slug or path. Empty searches by query.
queryNoOptional search text or ambient relevance terms.
categoryNoOptional wiki category filter for searches.
max_resultsNoMaximum result count.
universe_idNoOptional target universe page substrate.
changed_sinceNoOptional ISO timestamp for feed freshness filtering. With an empty page/query/category, returns pages changed after this timestamp.
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. Description adds no behavioral context beyond stating 'Read or search,' which is consistent but not additive. With annotations, a score of 3 is appropriate.

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

Conciseness4/5

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

Description is a single sentence with no wasted words. However, it could be slightly more informative without becoming verbose. Very concise.

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

Completeness2/5

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

No output schema exists, but description doesn't hint at return format (e.g., page content, search results list). With 6 optional parameters and no explicit usage pattern, the description is incomplete for a complex 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 description coverage is 100%; all parameters have descriptions. The tool description adds no extra parameter meaning beyond what the schema already provides. Baseline 3 applies.

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?

Description clearly states 'Read or search Workflow wiki pages,' using a specific verb and resource. It distinguishes from siblings like write.page (write) and read.graph (graph), making purpose unambiguous.

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 guidance on when to use this tool versus alternatives (e.g., read.graph, write.page). No context on prerequisites or when to choose search vs read.

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

run.graphRun GraphBInspect

Run a Workflow graph branch.

ParametersJSON Schema
NameRequiredDescriptionDefault
graph_idNoOptional graph/universe identifier.
run_nameNoOptional display name for the run.
inputs_jsonNoOptional JSON object containing run inputs.
branch_def_idYesBranch definition identifier to run.
recursion_limit_overrideNoOptional per-run recursion limit.
Behavior2/5

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

Does not disclose behavioral traits beyond annotations, such as return values, side effects, or error handling. Annotations indicate mutation but no additional context.

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?

Single sentence with no redundancy, efficiently conveys the core purpose.

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

Completeness3/5

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

Sufficient for a simple tool with well-documented schema, but missing return value information and broader workflow context.

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 description adds no additional meaning beyond what's already documented in the schema.

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 'Run a Workflow graph branch' clearly identifies the action and resource, distinguishing it from sibling tools like 'read.graph' and 'write.graph'.

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 guidance on when to use this tool versus alternatives; lacks explicit context or exclusions.

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

write.graphWrite GraphAInspect

Create or queue Workflow graph state.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNoHuman-readable shared-goal name.
tagsNoOptional comma-separated shared-goal tags.
textNoRequest text to queue.
targetYesWhat to write: goal or request.
graph_idNoOptional target graph/universe identifier.
branch_idNoOptional target branch identifier.
visibilityNoShared-goal visibility, usually public.public
descriptionNoOptional shared-goal description.
request_typeNoWorkflow request type.general
Behavior3/5

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

Annotations already indicate readOnlyHint=false and destructiveHint=false. The description adds 'queue' behavior but does not explain queuing implications. No contradiction with annotations.

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 a single sentence, directly stating the tool's function with no extraneous words. It is perfectly concise and front-loaded.

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

Completeness3/5

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

Given 9 parameters and no output schema, the description is minimal. It does not explain return values or the meaning of 'queue'. The schema covers parameters well, but behavioral context is lacking.

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 the description adds no extra parameter context beyond the schema. The description does not clarify relationships between parameters, maintaining a baseline score.

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 action 'Create or queue' and the resource 'Workflow graph state', distinguishing it from sibling tools like read.graph, run.graph, and write.page.

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?

The description provides no guidance on when to use this tool versus alternatives, nor any exclusions or prerequisites. An agent would not know when to choose write.graph over write.page.

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

write.pageWrite PageCInspect

Write, patch, or file a Workflow wiki page.

ParametersJSON Schema
NameRequiredDescriptionDefault
kindNoFiling kind: bug, patch_request, feature, or design.
pageNoWiki page slug or path for page writes.
tagsNoOptional comma-separated tags.
reproNoOptional reproduction notes for filed issues.
titleNoFiling title when creating a bug, patch, feature, or design page.
contentNoFull page content for a page write.
dry_runNoPreview consolidation-style wiki writes when supported.
categoryNoWiki category for full page writes.
expectedNoOptional expected behavior for filed issues.
filenameNoWiki filename for full page writes.
new_textNoReplacement text for a targeted page patch.
observedNoOptional observed behavior for filed issues.
old_textNoExisting text to replace for a targeted page patch.
severityNoOptional severity for filed issues.
componentNoOptional affected component for filed issues.
force_newNoBypass duplicate detection for filed issues.
log_entryNoOptional wiki log entry for full writes or patches.
workaroundNoOptional workaround for filed issues.
universe_idNoOptional target universe page substrate.
expected_sha256NoOptional full-page hash guard for patches.
reporter_contextNoOptional reporter context for filed issues.
Behavior2/5

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

Annotations indicate it is not read-only, not idempotent, and not destructive. The description adds no behavioral context beyond 'write/patch/file', such as interaction with existing pages, overwrite behavior, or auth requirements. With annotations present, bar is lower, but description adds minimal value.

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

Conciseness3/5

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

The description is a single sentence, making it concise and front-loaded. However, with 21 parameters, it is overly terse and omits critical information about the three distinct operations. It earns its place but lacks sufficient detail.

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

Completeness2/5

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

Given the tool's complexity (21 parameters, three modes, no output schema), the description is incomplete. It does not explain which parameters apply to writing vs patching vs filing, nor does it cover return values or error scenarios. The agent would likely struggle to use this tool correctly without additional documentation.

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

Parameters2/5

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

Schema coverage is 100%, so baseline is 3. However, the description completely fails to explain how the 21 parameters map to the three modes (write, patch, file). For example, which parameters are for filing issues versus page creation? No parameter grouping or usage hints are provided, making it less helpful than the schema alone.

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

Purpose4/5

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

The description clearly states the tool is for 'Write, patch, or file a Workflow wiki page,' specifying the verb (write/patch/file) and resource (wiki page). It distinguishes from siblings like 'write.graph' by targeting wiki pages instead of graphs. However, the three distinct operations are bundled without differentiation, slightly reducing clarity.

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?

The description provides no guidance on when to use this tool versus alternatives like 'write.graph', nor does it explain which mode (write vs patch vs file) to choose under what circumstances. There is no mention of when not to use it or prerequisites, leaving the agent without decision support.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.