Skip to main content
Glama

mcp

Server Details

Search @imqueue docs and scaffold typed services & clients from your AI coding agent.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
imqueue/mcp
GitHub Stars
0
Server Listing
@imqueue/mcp

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 DescriptionsA

Average 4.5/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a clearly distinct purpose: searching docs, fetching a doc, listing packages, installing locally, scaffolding a client, and scaffolding a service. There is no overlap or ambiguity between them.

Naming Consistency4/5

Most names follow a verb_noun pattern (get_doc, list_packages, search_docs, scaffold_client, scaffold_service), but local_install_guide breaks the pattern by starting with an adjective. Minor deviation, still readable and predictable.

Tool Count5/5

Six tools is well within the ideal 3-15 range and each tool earns its place. The count is neither bloated nor thin given the server's documentation and scaffolding focus.

Completeness5/5

The set covers the full lifecycle for using @imqueue: discovering packages, searching and reading docs, getting local setup instructions, and scaffolding both client and service. No obvious gaps for the intended purpose.

Available Tools

6 tools
get_docRead an @imqueue doc pageA
Read-only
Inspect

Fetch the full markdown of an @imqueue documentation page by its URL (as returned by search_docs). Returns plain markdown suitable for reading and quoting. Only imqueue.org URLs are fetched; anything else is refused.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesAn imqueue.org page URL, e.g. https://imqueue.org/get-started/
Behavior5/5

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

Beyond the annotations that already declare readOnlyHint and non-destructive behavior, the description adds valuable context: it returns plain markdown for reading/quoting and refuses any non-imqueue.org URLs. This gives the agent a clear expectation of output format and a security boundary, going well beyond the structured 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 concise, with three sentences that each serve a purpose: stating the action, describing the output, and stating a constraint. It is front-loaded with the main verb and resource, and contains no filler or redundant information.

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?

For a simple tool with a single parameter and strong annotations, the description is complete. It covers the input (URL), the output format (plain markdown), the use case (reading and quoting), and a key behavioral constraint (only imqueue.org URLs). No output schema is present, but the description sufficiently explains what the agent can expect.

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 schema already fully documents the single 'url' parameter with an example, so the description adds minimal new information about the parameter itself. The phrase 'as returned by search_docs' provides useful semantic context about where the URL should come from, but this is more about usage than parameter meaning, warranting 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 ('Fetch the full markdown') and the specific resource ('an @imqueue documentation page by its URL'), which distinguishes it from sibling tools like search_docs that search rather than fetch by URL. The title reinforces the purpose, and the example URL in the schema adds clarity.

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 implies when to use this tool: after search_docs returns a URL, and it explicitly notes that only imqueue.org URLs are accepted, which serves as a constraint. It does not explicitly list alternatives or when not to use it, but the context is clear enough for an agent to select this over the search tool.

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

list_packagesList @imqueue packagesA
Read-only
Inspect

Return the main @imqueue packages with a one-line summary and install command, so you can pick the right one.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows it is a safe read operation. The description adds that it returns a one-line summary and install command, and notes 'main' packages, implying a curated list. However, it does not disclose any caveats like potential missing packages or version details, so transparency is moderate 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.

Conciseness5/5

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

The description is a single sentence, front-loaded with the action and resource, and contains no unnecessary words. It efficiently conveys what the tool does, what it returns, and why to use it.

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?

For a zero-parameter, read-only listing tool with no output schema, the description fully explains the return value (packages with one-line summary and install command) and the purpose (choosing the right package). With strong annotations covering safety, this description is complete and sufficient for an agent to understand the tool's behavior.

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

Parameters4/5

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

The tool has zero parameters, so the schema fully covers all parameters (100% coverage). The description adds no parameter-specific information, but none is needed. The baseline for zero parameters is 4, which is appropriate here.

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: 'Return the main @imqueue packages with a one-line summary and install command.' The verb 'Return' and the resource 'packages' make the action explicit. The purpose is also given: 'so you can pick the right one,' which distinguishes it from sibling tools like get_doc or search_docs.

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 provides clear context: use this tool when you need to identify and choose among @imqueue packages. It does not explicitly mention alternatives or when not to use, but the purpose implies a selecting scenario. Sibling tools exist, but no direct comparison is made, 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.

local_install_guideHow to install the @imqueue MCP server locallyA
Read-only
Inspect

Return the setup instructions for running the full @imqueue MCP server on your own machine. The local server adds the CLI-backed tools, which act on your project files and running services and so cannot be offered by a hosted server. Returns instructions only — it installs nothing.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

Annotations already mark the tool as read-only and non-destructive. The description adds that it 'returns instructions only — it installs nothing,' which is valuable behavior context, and clarifies that the described tools act on files/services but this tool itself is passive.

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?

Two sentences, immediately states purpose, adds necessary context, and ends with a clarifying disclaimer. No superfluous content.

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?

For a zero-parameter, no-output-schema tool that returns static instructions, the description fully covers what it does, why it's needed, and what it doesn't do.

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

Parameters4/5

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

There are no parameters, so the schema has full coverage. The description provides no param-specific info needed; baseline of 4 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?

The description clearly states the tool 'returns setup instructions' for the @imqueue MCP server, using a specific verb and resource. It also distinguishes from hosted server offerings by mentioning CLI-backed tools, making it distinct from sibling doc/search/scaffold tools.

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 explains when local installation matters (to get CLI-backed tools that cannot be hosted), giving context for when to use this tool. However, it does not explicitly name alternatives or state 'use this instead of hosted server' as a direct instruction.

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

scaffold_clientScaffold an @imqueue typed clientA
Read-only
Inspect

Show how to generate and use the fully-typed client for an @imqueue service. @imqueue generates the real client from a running service (via imq client generate), so this returns that command plus an illustrative usage snippet. Returns text only — it writes no files.

ParametersJSON Schema
NameRequiredDescriptionDefault
methodsNoKnown methods (used to shape the example call)
serviceYesThe service to call, e.g. 'user' or 'UserService'
Behavior5/5

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

The annotations already declare readOnlyHint=true and destructiveHint=false, and the description adds a concrete side-effect disclosure: 'Returns text only — it writes no files.' It also states that it returns the generate command plus an illustrative usage snippet, making the output behavior clear.

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 sentences: purpose, generation mechanism, and side-effect note. No wasted words; key information is front-loaded.

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?

For a tool that returns text only, the description covers the purpose, the command to show, the snippet, and the no-files side effect. It also notes the client comes from a running service, which is useful context. The output is a simple text return, so no output schema is needed.

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%, with both `service` and `methods` fully described in the schema. The description does not add extra parameter semantics beyond this, so the 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?

The description starts with 'Show how to generate and use the fully-typed client for an @imqueue service', which gives a specific verb ('Show') and resource ('fully-typed client'). It distinguishes itself from sibling scaffold_service by clarifying it returns a command and snippet rather than actually scaffolding files.

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—when you need the command to generate a typed client—but it does not name alternatives or provide when/when-not guidance. There is no explicit comparison to scaffold_service or other siblings, so the usage context is only implicit.

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

scaffold_serviceScaffold an @imqueue serviceA
Read-only
Inspect

Generate an idiomatic @imqueue/rpc service (an IMQService subclass with @expose()d, JSDoc-typed methods) plus a bootstrap that starts it. Provide the methods you want, or omit them for a starter template. Returns source text only — it writes no files.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesService name, e.g. 'user' or 'UserService'
methodsNoMethods to expose
Behavior5/5

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

Annotations already indicate read-only and non-destructive behavior, but the description adds crucial details: returns source text only and writes no files. It also explains the optional methods behavior, going beyond annotation coverage.

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?

Two well-structured sentences: the first states the core function, the second covers usage options and output behavior. No wasted words, and the most important information is front-loaded.

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 tool's moderate complexity (2 params, no output schema), the description fully covers what is generated, how to customize, and what to expect as output. It is complete for an AI agent to invoke correctly.

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

Parameters4/5

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

The input schema has 100% coverage for both parameters, including nested method fields. The description enriches this by clarifying that omitting methods yields a starter template, adding meaning beyond 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 identifies the tool's purpose: generating an idiomatic @imqueue/rpc service with specific structural details (IMQService subclass, @expose()d methods, JSDoc types) and a bootstrap. This is a specific verb+resource combination that implicitly differentiates from sibling tools like scaffold_client.

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 provides usage guidance: provide methods or omit them for a starter template. It does not explicitly mention alternatives or when not to use it, but the clear context of generating a service makes usage evident.

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

search_docsSearch @imqueue documentationA
Read-only
Inspect

Search the official @imqueue docs (guides, tutorial, CLI manual, articles) and every exported symbol of every @imqueue package that publishes a generated API reference, returning the most relevant pages with their URLs. Each result names the package it belongs to. Takes a plain question or an exact symbol name such as 'RedisQueue.send', 'PgPubSub.listen' or 'watcherCheckDelay'. Answers 'how do I do X in @imqueue' and confirms a signature before code is written against it. Every result carries the page URL, which get_doc reads in full.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 6)
queryYesA question or a symbol name, e.g. 'expose a service method', 'delayed jobs' or 'IMQOptions.safeDelivery'
Behavior4/5

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

Annotations already indicate read-only and non-destructive behavior. The description adds meaningful context: results include package names, full URLs, and that results can be symbol names or plain questions. It also clarifies that get_doc consumes the URLs, but does not mention pagination or limit defaults beyond schema.

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 four sentences, front-loaded with the core action, and each sentence adds unique value: scope, output format, input examples, and the link to get_doc. There is no redundant or filler content.

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?

For a search tool with simple parameters and no output schema, the description fully explains what the tool returns, how to format inputs, and how it fits with sibling tools. It gives enough context for an agent to decide when to use it and what to expect.

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

Parameters4/5

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

Schema coverage is 100%, with both parameters documented. The description enhances the query parameter by providing concrete examples like 'RedisQueue.send' and 'PgPubSub.listen', clarifying it accepts both questions and exact symbol names. The limit parameter is not discussed in the description, but the schema sufficiently covers it.

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 @imqueue docs and exported symbols, returning relevant pages with URLs. It distinguishes itself from get_doc by noting that get_doc reads pages in full, making the 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 Guidelines4/5

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

It explains the tool answers 'how do I do X in @imqueue' and confirms signatures before coding, providing clear use cases. It implicitly differentiates from get_doc by mentioning it reads pages fully, but does not explicitly list when not to use alternatives.

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!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.