Skip to main content
Glama
doctone

inngest-cloud-mcp

by doctone

list_functions

Retrieve a list of all functions for a given app to see which ones are registered in Inngest Cloud.

Instructions

List all functions registered for a given app.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appNameYesThe app name/slug (e.g. 'my-app')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden, and it discloses almost nothing behavioral. It doesn't state whether the result is paginated, whether authentication or app-ownership is required, or what the returned entries contain. For a read-only list tool this is a real gap even if low-risk.

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?

A single front-loaded sentence with no filler or redundancy. Every word earns its place.

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?

For a simple single-param list operation with no output schema, the core intent is conveyed, but with no annotations and no output schema the description should at least hint at return shape or pagination behavior. Adequate but with clear gaps.

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% and there is a single parameter, so the schema already fully documents appName with an example format. The description adds nothing beyond it, which is the baseline-3 case when the schema does the lifting.

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?

States a specific verb ('List') and resource ('functions') scoped to 'a given app.' Clear and specific, though it makes no explicit reference to any sibling tool — necessary here only insofar as none of the siblings (list_events, get_run, cancel_run, etc.) overlap with function listing, so confusion risk is low.

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 offers no when-to-use guidance, no prerequisites, and no mention of alternatives. Usage is only faintly implied by the resource name; an agent gets no help deciding when this tool is appropriate versus other listing tools.

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