Skip to main content
Glama
cappyeo

discord-mcp

stickers_create_guild_sticker

Create a new custom sticker in a Discord guild by uploading an encoded image file with name, description, tags, and format.

Instructions

Purpose: Upload a new custom sticker to a guild (multipart).

When to use:

  • Programmatic onboarding of brand stickers.

When NOT to use:

  • Modify existing sticker → use stickers_modify_guild_sticker.

  • Format mismatch - Discord rejects payload that doesn't match file_format.

Example: {guild_id:"…", name:"WaveHi", description:"a wave", tags:"wave,hello", file_format:1, file_data:"data:image/png;base64,…"}

Returns: {id, name, description, tags, format_type, available}. File MUST be a base64 data URI.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesSticker name (2-30 chars)
tagsYesAutocomplete tags (max 200 chars)
guild_idYesGuild to attach the sticker to
file_dataYesSticker file as a base64 data URI (e.g. "data:image/png;base64,…")
descriptionYesSticker description (max 100 chars)
file_formatYes1=PNG, 2=APNG, 3=LOTTIE, 4=GIF
audit_reasonNoReason recorded in audit log (X-Audit-Log-Reason header)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

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

Annotations already indicate a write operation; the description adds concrete constraints: 'multipart', 'File MUST be a base64 data URI', and a return shape. No contradiction with 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?

Each section (Purpose, When, When NOT, Example, Returns) is tight and information-dense, using bold headers for scannability with no redundant prose.

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 creation tool, it covers purpose, usage, exclusions, a worked example, and return shape. It lacks permission/error details, but output schema exists and complexity is modest, making this sufficient.

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 covers all 7 parameters with descriptions, including file_format enum mapping and file_data base64 requirement; the description's example provides a concrete sample but doesn't add new semantic insight beyond the schema.

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 opens with 'Upload a new custom sticker to a guild (multipart)' which clearly states the action (upload) and object (new custom sticker), and explicitly distinguishes from modifying via sibling tool references.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

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

The 'When to use' and 'When NOT to use' sections explicitly name the alternative `stickers_modify_guild_sticker` and note format mismatch rejection, giving clear guidance on when not to use.

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

Install Server

Other Tools

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/cappyeo/discord-mcp'

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