Skip to main content
Glama
mailerlite

Canny MCP Server

by mailerlite

Canny MCP Server

A Model Context Protocol (MCP) server that integrates with Canny.io for customer feedback management. Built following CIQ's CODE2 principles to deliver Customer-Centric, Optimistic, Dedicated, Efficient, and Excellent solutions.

Features

Customer-Centric

  • Board Management: List and access all available Canny boards

  • Post Retrieval: Get detailed post information with flexible filtering

  • Search Capability: Find posts across boards using powerful search

  • Content Management: Create and update posts seamlessly

Efficient & Excellent

  • Rate Limiting: Built-in protection against API rate limits

  • Error Handling: Robust error handling with detailed feedback

  • Validation: Input validation using Zod schemas

  • Type Safety: Full TypeScript implementation

Related MCP server: Canny MCP Server

Installation

Prerequisites

  • Node.js 18 or higher

  • Canny.io API key

Quick Start

  1. Install dependencies:

    npm install
  2. Set up environment variables:

    export CANNY_API_KEY="your_api_key_here"
    export CANNY_BASE_URL="https://canny.io/api/v1"  # Optional
  3. Build the server:

    npm run build
  4. Run in development mode:

    npm run dev

Environment Variables

Required

  • CANNY_API_KEY: Your Canny.io API key

Optional

  • CANNY_BASE_URL: API base URL (default: https://canny.io/api/v1)

  • CANNY_TIMEOUT: Request timeout in ms (default: 30000)

  • CANNY_MAX_RETRIES: Max retry attempts (default: 3)

  • CANNY_RATE_LIMIT_RPM: Requests per minute limit (default: 60)

  • CANNY_RATE_LIMIT_BURST: Burst limit (default: 10)

Available Tools

Board Tools

  • get_boards: List all accessible Canny boards

Post Tools

  • get_posts: Get posts from a specific board with filtering options (returns structured JSON)

  • get_post: Get detailed information about a specific post (returns normalized JSON)

  • search_posts: Search for posts across boards with pagination metadata

  • create_post: Create a new post in a board (returns created post payload)

  • update_post: Update an existing post (returns updated post payload)

Extended Tools

  • get_categories: List categories for a board

  • get_comments: List comments for a post

  • get_users: List users with optional search & pagination

  • get_tags: List tags optionally filtered by board

Usage Examples

Get All Boards

{
  "name": "get_boards",
  "arguments": {}
}

Get Posts from a Board

{
  "name": "get_posts",
  "arguments": {
    "boardId": "board_123",
    "limit": 10,
    "status": "open",
    "sort": "newest"
  }
}

Search Posts

{
  "name": "search_posts",
  "arguments": {
    "query": "feature request",
    "limit": 20,
    "status": "open"
  }
}

Create a Post

{
  "name": "create_post",
  "arguments": {
    "authorId": "user_123",
    "boardId": "board_123",
    "title": "New Feature Request",
    "details": "Detailed description of the feature"
  }
}

Development

Running Tests

npm test

Linting

npm run lint
npm run lint:fix

Building

npm run build

Configuration with Claude

Add to your Claude MCP configuration:

{
  "mcpServers": {
    "canny": {
      "command": "node",
      "args": ["/path/to/canny-mcp-server/dist/server.js"],
      "env": {
        "CANNY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Error Handling

The server implements comprehensive error handling:

  • API rate limiting protection

  • Input validation with detailed error messages

  • Network error recovery with retries

  • Graceful handling of API failures

Contributing

Following CIQ's CODE2 principles:

  1. Customer-Centric: Focus on user value in every contribution

  2. Optimistic: Approach challenges as opportunities

  3. Dedicated: Own your contributions fully

  4. Efficient: Leverage existing solutions and automate where possible

  5. Excellent: Maintain high standards and continuous improvement

License

MIT License

Available Tools

10 tools
create_postB

Create a new post in a Canny board

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesTitle of the post
boardIdYesID of the board to create the post in
detailsNoDetailed description of the post (optional)
authorIdYesID of the user creating the post
categoryIdNoID of the category for the post (optional)
customFieldsNoCustom field values as key-value pairs (optional)

TDQS

B3.3/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. It only states the action ('Create a new post') without disclosing side effects, permissions required, error behavior, or return format. This is a significant gap for a write operation.

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 concise sentence, front-loaded with the purpose and free of filler. It efficiently conveys the tool's function without unnecessary detail.

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 6-parameter create operation with no annotations and no output schema, the description is functional but minimal. It lacks return-value information and does not mention dependencies like needing valid boardId/authorId from get_boards or get_users. The rich schema compensates partially, but the overall context is still incomplete.

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 meaning beyond what the schema already provides, such as which fields are required (authorId, boardId, title) or optional (details, categoryId, customFields).

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 uses a specific verb ('Create') and resource ('new post in a Canny board'), clearly distinguishing it from sibling tools like update_post, get_posts, and search_posts. It leaves no ambiguity about the operation's core function.

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 such as update_post or get_posts. It states only the action, with no context on prerequisites or exclusions, leaving the agent to infer usage.

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

get_boardsA

List all Canny boards accessible with the current API key

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It indicates a read-only list operation scoped to the current API key, which is useful. It doesn't detail return format or pagination, but for a simple list tool with no parameters, this is adequate.

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 concise sentence that front-loads the action and resource. Every word contributes to understanding, with no filler or redundancy.

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

Completeness4/5

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

For a tool with no parameters and no output schema, the description provides enough context: it lists all boards accessible via the API key. It could mention the return format, but given the simplicity of the operation, this is a minor gap.

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 baseline is 4. The description adds no parameter details because none exist, and the schema is already complete with no parameters to describe.

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 uses a specific verb ('List') and a specific resource ('Canny boards') plus a scope ('accessible with the current API key'), clearly distinguishing it from sibling tools like get_categories and get_posts. It fully states what the tool does without ambiguity.

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 clearly communicates what the tool returns (all boards accessible with the current API key), giving the agent context for when to use it. It doesn't explicitly mention alternative tools or exclusions, but the resource-specific phrasing makes the use case clear enough.

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

get_categoriesA

Get all categories from a specific Canny board

ParametersJSON Schema
NameRequiredDescriptionDefault
boardIdYesID of the board to get categories from

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the burden of disclosing behavior. 'Get all categories' implies a read-only list operation but does not disclose potential pagination, ordering, error cases, or authentication needs. It is not misleading, but it is minimal.

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, front-loaded sentence with no redundant information. It conveys the essential purpose without waste.

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

Completeness4/5

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

For a simple tool with one parameter and no output schema, the description sufficiently explains what the tool does and what it takes. It could mention the return format, but the purpose is clear enough for an agent to use it correctly.

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% for the single parameter boardId, and the description does not add any meaning beyond the schema. The baseline of 3 applies because the schema fully documents the parameter.

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 uses a specific verb ('Get') and resource ('all categories') with a scoping qualifier ('from a specific Canny board'), clearly distinguishing it from sibling tools like get_boards or get_posts. It unambiguously states what the tool does.

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 when to use the tool (when needing categories for a specific board) but does not explicitly state exclusions or mention alternative tools. The context is clear but lacks differentiation from related tools like get_tags or get_posts.

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

get_commentsB

Get comments from a specific Canny post

ParametersJSON Schema
NameRequiredDescriptionDefault
skipNoNumber of comments to skip for pagination
limitNoNumber of comments to retrieve
postIdYesID of the post to get comments from

TDQS

B3.4/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. It only states 'Get comments' but does not disclose behavior such as pagination handling, ordering, error cases, whether replies are included, or whether the operation is read-only. 'Get' implies read-only, but the lack of explicit behavioral context is a gap.

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, concise sentence that is front-loaded with the action and resource. It has no filler, but it could include a bit more context without becoming verbose, such as mentioning pagination or post ID requirement.

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?

While the tool is simple and the schema is self-explanatory, there is no output schema and no annotations. The description does not indicate the structure of returned comments or pagination behavior, though the parameter details help. It is adequate for basic invocation but leaves some context uncovered.

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 input schema covers all three parameters with clear descriptions including defaults and bounds for skip and limit. The description adds minimal semantic value beyond the schema, only clarifying that comments are tied to a specific post. Given schema coverage is 100%, the baseline score of 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 'Get comments from a specific Canny post' uses a specific verb ('Get') and clearly identifies the resource ('comments') and scope ('from a specific Canny post'). It distinguishes this tool from siblings like get_boards, get_posts, and get_users, which focus on other resources.

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 usage is implied by the resource: use this tool when you need comments for a particular post. However, there is no explicit guidance on when not to use it or how it differs from alternatives like get_post or search_posts. No prerequisites (e.g., needing a valid postId) are mentioned.

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

get_postB

Get detailed information about a specific Canny post

ParametersJSON Schema
NameRequiredDescriptionDefault
postIdYesID of the post to retrieve

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It says 'detailed information' but does not disclose error behavior, auth requirements, rate limits, or what happens for nonexistent posts. The basic read operation is implied but not enriched.

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, front-loaded sentence with no filler words. It efficiently states the verb, resource, and scope, earning its place without redundancy.

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 one-parameter GET tool, the description is minimally adequate but lacks return format details or usage conditions. With no output schema, more specificity about 'detailed information' would improve completeness, especially given sibling tools that may overlap.

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% for the only parameter postId, with description 'ID of the post to retrieve'. The tool description adds no additional parameter meaning, so the baseline 3 applies as established by high schema coverage.

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?

Description uses the specific verb 'Get' and identifies the resource as 'a specific Canny post', clearly indicating single-post retrieval. It mildly distinguishes from siblings like get_posts and search_posts by emphasizing 'specific', though it does not explicitly call out alternatives.

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 is provided on when to use this tool versus get_posts, search_posts, or get_comments. The description implies a need for a postId but does not state conditions, alternatives, or exclusions.

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

get_postsB

Get posts from a specific Canny board with optional filtering

ParametersJSON Schema
NameRequiredDescriptionDefault
skipNoNumber of posts to skip for pagination
sortNoSort order for posts
limitNoNumber of posts to retrieve
searchNoSearch term to filter posts
statusNoFilter by post status
tagIdsNoOptional tag IDs to filter posts
boardIdYesID of the board to fetch posts from
categoryIdsNoOptional category IDs to filter posts

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does not state that this is a read-only operation, nor does it explain pagination defaults, response format, or how filters combine. The schema lists parameters, but the description adds no behavioral context beyond the tool's name and a one-line summary.

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, concise sentence that conveys the core purpose without redundancy. It is front-loaded and efficiently communicates the key functionality, though it is somewhat sparse.

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?

The tool has 8 parameters and no output schema, but the schema fully documents all parameters. The description lacks information about return value structure, default behaviors (e.g., default limit, sort order), and how multiple filters interact, leaving room for inference but not critical 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?

The input schema provides descriptions for all 8 parameters, achieving 100% schema_description_coverage. The description does not add any semantic meaning beyond what the schema already offers, so the baseline score of 3 is appropriate.

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 (get), resource (posts), and scope (from a specific Canny board). It effectively differentiates the tool from siblings like get_post (retrieves a single post) and search_posts (likely searches across boards).

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 for fetching posts from a specific board with optional filtering, but it does not explicitly mention when to use this tool over alternatives such as search_posts or get_post. No exclusions or alternative guidance is provided.

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

get_tagsA

Get all tags from Canny boards (optionally filtered by board)

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of tags to retrieve
boardIdNoOptional: ID of specific board to get tags from

TDQS

A3.5/5.0
Behavior2/5

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

There are no annotations, so the description must disclose behavior. It says 'Get all tags' but the schema includes a limit parameter with default 20, implying the tool does not necessarily return all tags. This is a significant omission/contradiction, and no mention is made of pagination, defaults, or ordering.

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, clear sentence that front-loads the main action and key qualifier. No unnecessary words or filler.

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?

The tool is simple with two optional parameters and no output schema, so a short description is acceptable. However, the mismatch between 'all tags' and the limit parameter leaves a crucial gap in understanding the tool's actual behavior, making it incomplete.

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% for both parameters (limit and boardId). The description adds minimal extra meaning—it repeats that filtering is optional, which is already stated in the schema. It does not clarify the limit parameter's behavior or relationship to 'all tags.'

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 retrieves 'all tags from Canny boards,' with a specific verb and resource. It also mentions optional filtering by board, which distinguishes this from siblings like get_categories or get_boards.

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 when to use the tool (when needing tags, optionally filtered by board) but does not explicitly discuss alternatives or exclusions. Sibling tool names like get_categories and get_boards exist, yet no guidance is provided on choosing among them.

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

get_usersC

Get users/authors from your Canny instance

ParametersJSON Schema
NameRequiredDescriptionDefault
skipNoNumber of users to skip for pagination
limitNoNumber of users to retrieve
searchNoSearch term to filter users by name or email

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must carry the full burden of behavioral disclosure. It only states 'Get', implying a read-only operation, but does not mention pagination behavior, rate limits, or what the response contains. The schema hints at skip/limit for pagination, but the description itself adds no behavioral 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?

The description is a single, concise sentence that directly states the tool's purpose. There is no redundant or filler content, making it efficient and easy to parse.

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?

The description is minimal and does not compensate for the lack of an output schema or annotations. It does not explain what data is returned, how pagination works, or any caveats about the 'users/authors' concept. For a tool with optional parameters but no output schema, more context 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 description coverage is 100%, with each parameter (skip, limit, search) having a clear description in the schema. The tool description adds no additional parameter context, but the baseline of 3 applies because the schema already provides thorough parameter semantics.

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 verb ('Get') and the resource ('users/authors from your Canny instance'), which distinguishes it from sibling tools like get_posts or get_boards. It is specific enough, though 'users/authors' is slightly ambiguous about whether they are distinct concepts.

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 such as search_posts or get_posts. It does not mention prerequisites, typical use cases, or exclusions, leaving the agent without context for tool selection.

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

search_postsB

Search for posts across Canny boards

ParametersJSON Schema
NameRequiredDescriptionDefault
skipNoNumber of posts to skip for pagination
limitNoNumber of posts to retrieve
queryYesSearch query to find posts
statusNoFilter by post status
boardIdsNoOptional array of board IDs to limit search scope

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It merely says 'Search', giving no information about safety, side effects, pagination, or return format. This is a minimal disclosure.

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 with no wasted words. It is front-loaded and immediately clear about the tool's 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?

The schema covers all parameters, but the description lacks context about return behavior and when to use this tool over siblings. For a simple search tool, this is minimally adequate but leaves 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%, so the baseline is 3. The description adds no extra meaning to the parameters beyond what the schema provides, but this is acceptable given the schema descriptions are complete.

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 uses a specific verb ('Search') and identifies the resource ('posts across Canny boards'), making the core function clear. However, it does not explicitly distinguish itself from sibling tools like get_posts, relying on the verb 'search' to imply a difference.

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 is provided on when to use this tool versus alternatives such as get_posts or get_post. The description only states what it does, not the context in which it should be preferred.

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

update_postB

Update an existing Canny post

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNoNew title for the post (optional)
postIdYesID of the post to update
statusNoNew status for the post (optional)
detailsNoNew description for the post (optional)
categoryIdNoNew category ID for the post (optional)
customFieldsNoUpdated custom field values (optional)

TDQS

B3.4/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 of behavioral disclosure. It only states 'Update an existing Canny post' without explaining whether it's a partial update, what happens to omitted fields, or any required permissions or side effects. This is a significant gap for a mutation tool.

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 concise sentence that communicates the core purpose without any wasted words. Every word earns its place.

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 mutation nature, lack of annotations, and absence of an output schema, the description is too sparse. It does not address partial vs. full update behavior, error handling, or any prerequisites. It is minimally viable but leaves important 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%, so the schema already documents all six parameters. The description itself adds no parameter semantics beyond what the schema provides, which is sufficient at baseline.

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 'Update an existing Canny post' clearly identifies the action (update) and the resource (post), distinguishing it from sibling tools like create_post or get_post. It is specific and unambiguous.

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 to modify an existing post, but it does not explicitly state when not to use it or mention alternatives like create_post for new posts. The context is clear enough, but there are no explicit exclusions.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 10 tool updatesv2.1.0
    • First observedcreate_post
    • First observedget_boards
    • First observedget_categories
    • First observedget_comments
    • First observedget_post
    • First observedget_posts
    • First observedget_tags
    • First observedget_users
    • First observedsearch_posts
    • First observedupdate_post

TDQS

A3.5/5.0
Disambiguation4/5

Each tool targets a distinct resource or action, with clear separation between listing posts, getting a single post, and searching posts. The only minor ambiguity is between get_posts and search_posts, but their descriptions clarify the difference.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get, search, create, update), making the API predictable and easy to navigate. There are no mixed conventions or vague verbs.

Tool Count5/5

Ten tools is well within the ideal range for a domain-specific server, covering boards, posts, comments, users, and tags without being overwhelming. Each tool is clearly scoped to a specific operation.

Completeness3/5

The tool set covers core read operations and post creation/update, but lacks delete functionality for posts and any comment write operations. Given Canny's feedback focus, missing vote or comment creation capabilities are notable gaps.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

  • Connect to a Sleekplan workspace for customer feedback, roadmap, changelog, and surveys. Feedback: search and filter posts, read threads with votes and voters, create and update, merge duplicates, check for similar requests, pull stats. Triage: apply tags and statuses, assign owners, reply in comments. Surveys: read NPS, CSAT, and multi-question responses and summaries. Changelog: draft and publish release notes for what you ship. Users: manage end users and segments! Find out more at https://sleekplan.com/mcp/

  • Manage Kanera workspaces, boards, cards, checklists, comments, notes, automations, and reports.

    110
  • Read and manage your EasyKanban kanban boards: to-do summaries, create, update, and move cards.

  • Manage customer feedback, roadmap, changelog, and surveys in your Sleekplan workspace.

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mailerlite/canny-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server