Invokera Discover
Server Details
Search, inspect and invoke every public tool on Invokera through one MCP connection.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
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.
Tool Definition Quality
Average 4.3/5 across 3 of 3 tools scored.
Each tool targets a distinct step in the workflow: search_tools finds tools, describe_tool provides schema/instructions, invoke_tool executes. There is no overlap in purpose.
All tool names follow a consistent verb_noun pattern using lowercase with underscores: search_tools, describe_tool, invoke_tool. The pluralization of 'tools' is minor and does not break consistency.
Three tools is well-scoped for a discovery/catalog server. Each tool is necessary and sufficient to complete the search-describe-invoke flow without redundancy.
The tool surface fully covers the core domain of discovering and invoking catalog tools. Starting from search, getting schema, and calling the tool is a complete lifecycle with no obvious missing operations.
Available Tools
3 toolsdescribe_toolARead-onlyInspect
Get the full input schema and calling instructions for one tool found via search_tools. Returns the JSON Schema plus the exact REST/MCP endpoint to call it on. Calling a tool requires that project's own endpoint token, obtained from its owner.
| Name | Required | Description | Default |
|---|---|---|---|
| tool_name | Yes | The toolName from a search_tools result. | |
| project_slug | Yes | The projectSlug from a search_tools result. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds value by disclosing the exact return content (JSON Schema and REST/MCP endpoint) and the auth requirement (project's own endpoint token), which are useful behavioral details beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences that lead with the main purpose, then explain what is returned and the auth token requirement. No wasted words, and all information is relevant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple introspection tool with good annotations and full schema coverage, the description provides enough context: what it returns, the prerequisite (search_tools result), and auth needs. No output schema means the description's explicit mention of return content fills that gap.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema has 100% coverage for both parameters, with descriptions for each. The tool description minimally adds context by indicating the parameters come from a search_tools result, which is helpful but not substantial. Schema already does the heavy lifting, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states that the tool 'Get the full input schema and calling instructions for one tool found via search_tools', which is a specific verb+resource. It also distinguishes itself from siblings 'search_tools' (which searches for tools) and 'invoke_tool' (which calls a tool) by focusing on retrieving metadata.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says the tool is for 'one tool found via search_tools', providing clear context that it should be used after searching. It also mentions the auth requirement for calling the tool (endpoint token), which is a practical prerequisite. However, it doesn't explicitly contrast with invoke_tool, though sibling names make the distinction obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
invoke_toolAInspect
Call a tool whose owner has enabled public invocation, without needing that project's token. Only works for tools opted in by their owner; others return not-found (use describe_tool for how to call them with a token). Usage is metered to the tool owner. Get project_slug/tool_name and the argument schema from search_tools + describe_tool first.
| Name | Required | Description | Default |
|---|---|---|---|
| arguments | No | Arguments matching the tool inputSchema from describe_tool. | |
| tool_name | Yes | The toolName from a search_tools result. | |
| project_slug | Yes | The projectSlug from a search_tools result. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only indicate readOnly=false and destructiveHint=false, leaving room for additional context. The description adds that the tool requires owner opt-in, returns not-found otherwise, usage is metered to the owner, and no project token is needed—useful behavioral details beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each serving a distinct purpose: action, constraint/alternative, and preparation. No filler, front-loaded with the core functionality.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool that invokes another, the description covers prerequisites, limitations, and the standard workflow. It omits expected return format, but since no output schema is present and the target varies, this is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions already explain each parameter (e.g., 'The toolName from a search_tools result'), and coverage is 100%. The description reinforces to get the argument schema from describe_tool but adds little semantic detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'calls a tool whose owner has enabled public invocation,' specifying the resource (publicly invocable tools) and distinguishing it from siblings by noting it works without a project token. It uniquely positions invoke_tool against describe_tool and search_tools, which are for discovery, not invocation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says 'Only works for tools opted in by their owner; others return not-found (use describe_tool for how to call them with a token).' It also instructs to obtain project_slug/tool_name and argument schema from search_tools + describe_tool, giving clear when-to-use and preparation guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_toolsARead-onlyInspect
Search the Invokera catalog for published tools across all projects. Returns a ranked list of tools (name, project, summary, category) WITHOUT their input schemas. Call describe_tool next to get the full schema and calling instructions for a specific tool.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results, 1-25 (default 10). | |
| query | No | Keywords, e.g. "housing price" or "stock signal". Empty lists popular tools. | |
| category | No | Optional category filter. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds valuable behavioral context by stating the return format (ranked list of name, project, summary, category) and explicitly noting that input schemas are NOT returned, helping the agent set expectations and plan subsequent calls.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the tool's purpose and immediately followed by a useful next-step instruction. Every sentence earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple discovery tool, the description covers the search scope, return contents (fields), and the critical limitation (no schemas). It also provides the recommended follow-up action, making it fully sufficient for an agent to use effectively without an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with each parameter having a clear description including defaults, examples, and enumerated values. The description does not add additional parameter-level details, but the schema fully compensates, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Search'), identifies the resource ('the Invokera catalog'), and clarifies scope ('across all projects'). It clearly distinguishes from siblings by specifying it returns a ranked list without input schemas and directs to describe_tool for details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs the agent to call describe_tool next for the full schema and calling instructions, establishing a clear workflow. It does not mention invoke_tool or provide explicit exclusions, but the sibling context and the phrase 'Call describe_tool next' effectively guide when to use this tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceProxies to all of a user's MCPs and allows them to expose dynamic toolsets of tools from those servers to improve context and tool-usage.Last updated8174155TypeScriptMIT

invokit-mcpofficial
Alicense-qualityDmaintenanceOfficial MCP server for invok.it, the API marketplace for AI agents. Enables searching, evaluating, and invoking AI tools directly from MCP-compatible clients like Claude Desktop and Cursor.Last updatedMIT
Crabeye MCP Bridgeofficial
Alicense-qualityAmaintenanceConsolidates multiple upstream MCP servers behind a single STDIO interface, exposing search_tools and run_tool to avoid context bloat.Last updated6313MIT