Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CANNY_API_KEYYesYour Canny.io API key
CANNY_TIMEOUTNoRequest timeout in ms30000
CANNY_BASE_URLNoAPI base URLhttps://canny.io/api/v1
CANNY_MAX_RETRIESNoMax retry attempts3
CANNY_RATE_LIMIT_RPMNoRequests per minute limit60
CANNY_RATE_LIMIT_BURSTNoBurst limit10

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
get_boardsB

List all Canny boards accessible with the current API key

get_postsC

Get posts from a specific Canny board with optional filtering

get_postC

Get detailed information about a specific Canny post

search_postsC

Search for posts across Canny boards

create_postC

Create a new post in a Canny board

update_postC

Update an existing Canny post

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 6 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: create_post, get_post, update_post handle individual post lifecycle; get_boards lists boards; get_posts retrieves posts from a board; and search_posts searches across boards. No ambiguity exists between these operations.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case naming (e.g., create_post, get_boards, update_post). The verbs are standard and predictable across the set.

Tool Count5/5

With 6 tools, this server is well-scoped for managing Canny posts and boards. It covers core operations without being too sparse or bloated, fitting typical use cases efficiently.

Completeness4/5

The toolset provides solid CRUD coverage for posts (create, get, update, list, search) and board listing. A minor gap is the lack of delete_post or board management tools, but agents can still handle most workflows effectively.