sticker-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@sticker-mcpsend a sticker for my happy mood"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
English · 简体中文
sticker-mcp
An MCP server that lets AI send expressive stickers (表情包) directly into the chat, rendered inline via MCP Apps. Comes with a standalone web admin page for managing the sticker library, and tools that let the AI add new stickers for you.
Features
Inline sticker rendering —
send_stickerrenders the image in the conversation via aui://MCP Apps widget (works on claude.ai and ChatGPT web).AI judgement built in — tool descriptions teach the AI to check the library (
list_available_stickers) and pick a sticker matching the conversation's mood, proactively.AI can grow the library —
create_sticker_uploadgives the AI a one-time upload URL on this sticker library for attached image bytes;add_stickerstill accepts an existing image URL. On local stdio there is alsoadd_sticker_by_path.Standalone admin page —
/adminis a plain web page (no MCP host needed): drag & drop / paste upload, batch add, tag editing, search, delete. Optionally protected byADMIN_TOKEN.Simple storage — JSON + image files on disk. No database.
Related MCP server: Simple Memory MCP
Live preview
Project showcase: https://show.asashiki.com/projects/sticker-mcp.html
Tools
Tool | Purpose |
| Pick a sticker by emotion/scene |
| Catalog of |
| Download an image from an existing public http(s) URL as a sticker with name + tags. It does not accept base64/data URIs. |
| Create a 10-minute one-time PUT URL on this sticker library so the AI can upload attached image bytes directly here, without third-party image hosts. |
| (stdio/local only) Add a sticker from a local file path. |
Transports & endpoints
Local stdio:
node dist/stdio.js(ornpm run dev:stdio).Remote Streamable HTTP:
node dist/server.js, MCP endpoint atMCP_HTTP_PATH(default/mcp/sticker,/mcpkept as alias).HTTP server also serves:
/images/:filename(sticker images for the widget),/admin(management page),/api/stickers(REST for the admin page),/api/stickers/upload/:token(one-time direct uploads created by the MCP tool),/healthz.
Quick start (local)
npm install
npm run build
npm start # Streamable HTTP on :3000
# or stdio for Claude Desktop:
npm run start:stdioClaude Desktop (stdio)
{
"mcpServers": {
"sticker": {
"command": "node",
"args": ["path/to/sticker-mcp/dist/stdio.js"]
}
}
}Remote deployment (claude.ai / ChatGPT web)
Copy
.env.exampleto.envand set at leastPUBLIC_BASE_URL(public HTTPS origin) — the widget loads sticker images fromPUBLIC_BASE_URL/images/*, and that origin is written into the widget CSP. Without it, images are inlined as base64 (fine locally, brittle in hosted iframes).docker compose up -d(or runnode dist/server.jsbehind your reverse proxy).Reverse-proxy
https://your-domain/mcp/stickerto the container's:3000(same path), plus/images/*,/admin,/api/*.In claude.ai -> Settings -> Connectors -> add custom connector with URL
https://your-domain/mcp/sticker. IfMCP_AUTH_PASSWORDis set, the connector will use OAuth dynamic client registration and show the password authorization page.
Hosts cache
ui://resources by URI. If you modify the widget, bump the version suffix insrc/widget/sticker-view-html.ts(mcp-app-v2.html→v3...).
Configuration
See .env.example. Summary:
Variable | Default | Meaning |
| (empty) | Public HTTPS origin; enables URL-based images + CSP. Required for web AI clients. |
|
| HTTP port. |
|
| Streamable HTTP MCP route. |
| PUBLIC_BASE_URL origin | CORS allowlist, comma separated. |
| (empty) | Optional password gate for remote connectors. Leave empty to disable auth. |
|
| stickers.json + images/. |
| (empty) | If set, |
OAuth password auth
Set MCP_AUTH_PASSWORD to enable a minimal OAuth Authorization Code flow for remote connectors. The server exposes OAuth discovery and dynamic client registration, so clients that support automatic registration can connect without a manually configured Client ID. During connection, enter the configured password on the authorization page.
Development
npm run dev # HTTP server with reload
npm run typecheck
npm run build # server (tsup) + widget (IIFE) + admin assetsCode layout: src/mcp.ts (tool/resource registration) · src/server.ts (HTTP transport + REST + static) · src/stdio.ts (local transport) · src/storage.ts (JSON + sharp) · src/widget/ (MCP Apps widget) · src/admin/ (standalone admin page).
License
MIT
Available Tools
5 toolsadd_stickerAdd StickerA
Add an image to the sticker library from an existing public http(s) image URL only. Do not pass data:image URIs or base64 here. If you have the user's attached image bytes/file, call create_sticker_upload instead and upload the original bytes directly to this sticker library. Do not use third-party image hosts. If the user already described what the image is, do not spend tokens visually analyzing it; use the user's description to choose the name and tags. If the user did not describe it, inspect the image enough to choose a short name plus 1-8 emotion/scene tags. Supported formats: png / jpeg / gif / webp / avif, max 8MB.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Short display name, e.g. 'Claude酱点赞'. | |
| emotions | Yes | Emotion/scene tags describing when to send it, e.g. ['点赞', '开心', '赞', 'thumbs up']. | |
| imageUrl | Yes | Public http(s) image URL only. Do not pass data:image or base64. |
Output Schema
| Name | Required | Description |
|---|---|---|
| name | Yes | |
| method | Yes | |
| emotions | Yes | |
| maxBytes | Yes | |
| expiresAt | Yes | |
| uploadUrl | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate this is a write operation (readOnlyHint=false) and non-idempotent, which the description aligns with. The description adds valuable context: URL restrictions, supported formats (png/jpeg/gif/webp/avif), max 8MB file size, and guidance on how to name and tag. This goes beyond the schema and annotations, though it doesn't address failure modes or duplicate names.
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 longer than average but every sentence delivers critical instructions: source restrictions, alternative tool, naming strategy, and supported formats. It is front-loaded with the core purpose and then systematically covers constraints and usage, 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?
Given the tool's complexity and the presence of an output schema, the description is remarkably complete. It covers the essential context for correct use: what input is allowed, what to do if the image is a file, how to choose name/tags, format limits, and explicit exclusions. The presence of an output schema means return values don't need explanation, so this is fully adequate.
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 description coverage is 100%, so parameters are already well-documented. The description adds meaningful context beyond the schema: the imageUrl parameter's restriction to public http(s) URLs and explicit prohibition of data:image/base64, plus format and size limits. It also provides strategy for name and emotions parameters (short name, 1-8 tags, use user description if available).
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's function: 'Add an image to the sticker library from an existing public http(s) image URL only.' It specifies the verb (Add), resource (sticker library), and crucial scope (public URL only), effectively distinguishing it from siblings like create_sticker_upload and add_sticker_by_path.
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 provides explicit when-to-use and when-not-to-use guidance: it warns against data:image/base64, third-party hosts, and directs users with attached image files to create_sticker_upload instead. It also advises on naming and tag selection, instructing to use the user's description to avoid unnecessary visual analysis.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
add_sticker_by_pathAdd Sticker From Local PathA
Add a new sticker from an image file on this computer (local/stdio mode only). Use when the user gives a local file path. Supported: png / jpeg / gif / webp / avif, max 8MB.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Short display name. | |
| emotions | Yes | Emotion/scene tags. | |
| filePath | Yes | Absolute path to the image file. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare non-read-only and non-destructive, so the description adds useful context: local mode restriction, supported file formats, and max size. This goes beyond annotations and clarifies operational constraints.
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 concise sentences, each earning its place. Front-loaded with the verb and purpose, immediately followed by usage guidance and technical constraints. No 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?
Given the simple tool (3 flat parameters, no output schema, no nested objects), the description provides essential context: local-only operation, file type and size limits. It doesn't describe post-conditions or error behavior, but that's not necessary for this straightforward create operation.
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 already covers all parameters with descriptions, so baseline is 3. The description enhances filePath semantics by adding supported formats (png/jpeg/gif/webp/avif) and max size (8MB), which are not in the schema. This adds real value.
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?
Clearly states the action 'Add a new sticker from an image file on this computer', specifying the resource (sticker) and source (local path). It distinguishes itself from siblings like add_sticker or create_sticker_upload by emphasizing 'local/stdio mode only' and 'by path'.
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?
Explicitly says 'Use when the user gives a local file path' and adds 'local/stdio mode only', providing a clear condition for when to use this tool instead of alternatives. This is excellent guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_sticker_uploadCreate Sticker Upload URLA
Create a one-time upload URL on this sticker library for the user's attached image bytes/file. Use this when adding a sticker from an attachment. After this tool returns, upload the original image bytes directly to uploadUrl with HTTP PUT and Content-Type image/png, image/jpeg, image/gif, image/webp, or image/avif. The sticker is saved as soon as the PUT succeeds; do not call add_sticker afterwards. Do not upload the image to third-party image hosts. Do not curl the MCP endpoint. If the user already told you what the image is, skip visual analysis and use that description for the name and tags. If not, inspect the image enough to name and tag it. The URL expires in 10 minutes.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Short display name, e.g. 'Claude酱点赞'. | |
| emotions | Yes | Emotion/scene tags describing when to send it, e.g. ['点赞', '开心', '赞', 'thumbs up']. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite annotations indicating a write operation (readOnlyHint=false), the description goes far beyond them with actionable behavior: URL expires in 10 minutes, upload via HTTP PUT with specific content types, sticker saved as soon as PUT succeeds, and step-by-step upload workflow. This provides exceptional transparency for the agent.
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 moderately long but every sentence carries essential information for correct usage. It front-loads the primary action, then follows a logical sequence (how to upload, what not to do, how to fill parameters, expiration). Nothing feels redundant or wasted.
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 with no output schema, the description covers all necessary context: the one-time URL, the required HTTP PUT call, content types, the fact that no further tool calls are needed, and the 10-minute expiry. The description is self-sufficient for an agent to invoke and complete the workflow correctly.
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 clear parameter descriptions, so baseline is 3. The description adds extra semantic guidance by explaining how to populate the name and emotions parameters: 'If the user already told you what the image is, skip visual analysis and use that description for the name and tags.' This goes beyond schema descriptions.
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's purpose: 'Create a one-time upload URL on this sticker library for the user's attached image bytes/file.' It uses a specific verb and resource, and distinguishes from siblings by specifying 'Use this when adding a sticker from an attachment' and explicitly warning 'do not call add_sticker afterwards.'
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 provides explicit when-to-use guidance: 'Use this when adding a sticker from an attachment.' It also gives alternatives (do not upload to third-party hosts, do not curl the MCP endpoint) and exclusions (do not call add_sticker afterwards), making the decision boundary clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_available_stickersList Available StickersARead-only
List every sticker in the library with its id, name and emotion/scene tags. Call this once early in a conversation (or when send_sticker reports no match) so you know which moods you can express; afterwards you can call send_sticker directly.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true. The description adds behavioral context by specifying that it lists *every* sticker, the included fields, and that results should be used to know which moods can be expressed. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no redundancy: the first sentence states the tool's purpose, the second gives usage context. Front-loaded and efficient.
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 zero-parameter, read-only listing tool, the description fully specifies what is listed, when to call it, and how it feeds into subsequent actions. No output schema exists, but the description mentions the key output fields, making it complete.
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?
The tool has zero parameters, so the schema fully covers parameter semantics (baseline 4). The description adds value by explaining what data is returned and how it relates to sending stickers, though no parameter-specific info is needed.
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 the verb 'List' with a specific resource ('every sticker in the library') and names the output fields ('id, name and emotion/scene tags'), clearly stating the action and result. It distinguishes from siblings like send_sticker, which sends, and add_sticker, which adds.
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?
It gives explicit when-to-use guidance: 'Call this once early in a conversation (or when send_sticker reports no match)' and then instructs 'afterwards you can call send_sticker directly'. This also clarifies the alternative tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_stickerSend StickerARead-only
Send an expressive sticker (meme/表情包) that renders as an image in the chat. Use this proactively whenever a sticker would make the reply more fun or expressive — reacting to good/bad news, greeting, teasing, celebrating, comforting. Pick query based on the conversation's mood (an emotion or scene word such as 开心 / 委屈 / 干杯 / good night). If you have not seen the library yet in this conversation, call list_available_stickers first and choose a tag from it. If several stickers match, a random one is chosen — you can pass stickerId to force an exact sticker.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Emotion/scene tag or sticker name to match, e.g. '开心', 'sad', '猫猫疑惑'. | |
| stickerId | No | Exact sticker id from list_available_stickers; overrides query matching. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| name | Yes | |
| emotions | Yes | |
| imageUrl | Yes | |
| mimeType | Yes | |
| matchedQuery | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses the random-selection behavior and stickerId override, but it directly contradicts the readOnlyHint=true annotation by describing a 'send' operation, which is an action with side effects. This is a clear annotation contradiction, so the score is 1.
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 compact yet comprehensive, front-loading the purpose and then giving usage notes. Every sentence adds practical value without redundancy.
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?
The tool is simple with two well-documented parameters, and an output schema exists. The description covers preparation (listing stickers), selection strategy, and fallback behavior, making it adequately complete for an agent to use correctly.
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?
The schema already covers both parameters with descriptions. The description adds value by explaining how to pick query based on conversation mood, and the behavior when multiple stickers match. This goes beyond the schema, so a score of 4 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 'Send an expressive sticker (meme/表情包) that renders as an image in the chat' — a specific verb and resource. It also distinguishes itself from siblings like list_available_stickers and add_sticker by focusing on sending in chat.
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?
It explicitly says 'Use this proactively whenever a sticker would make the reply more fun or expressive' and provides examples of when to use. It also instructs to call list_available_stickers first if the library hasn't been seen, giving clear guidance.
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.
5 tool updates
v1.1.0- First observed
add_sticker - First observed
add_sticker_by_path - First observed
create_sticker_upload - First observed
list_available_stickers - First observed
send_sticker
TDQS
Scored across 5 tools
Each tool has a clearly distinct purpose: listing, sending, and three ways to add stickers (URL, attachment, local path). The descriptions explicitly delineate when to use each add variant, so an agent should never be unsure which tool fits.
All names follow a verb_noun snake_case pattern, but 'list_available_stickers' and 'create_sticker_upload' are slightly more verbose than the simple 'send_sticker' and 'add_sticker'. Minor deviations exist, but the pattern is still readable and predictable.
Five tools is well within the ideal 3-15 range. Each tool covers a distinct aspect of sticker management—listing, sending, and adding via three different input sources—without unnecessary redundancy.
The core use case (list and send stickers) is fully covered, and adding stickers supports the three common input types. Missing delete/update operations are minor gaps for a sticker library, but they don't hinder the primary functionality.
Maintenance
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
Generate AI images, videos, music, SFX & speech in any AI assistant. Results appear inline in chat.
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
On-brand creative studio for AI agents: images, video, audio, and 3D.
Carbon Voice MCP serves as a bridge that connects AI assistants like ChatGPT, Claude, and Cursor to a user's Carbon Voice account, turning voice messages and conversations into a private, on-demand knowledge base. It provides 28 specialized tools for comprehensive voice messaging management, including creating and sending messages, accessing conversation history with instant transcription, running AI actions (summarization, TLDR generation, meeting notes), and managing workspace collaboration through folders, contacts, and team communications.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to send WhatsApp messages, templates, and retrieve media through the WhatsApp Cloud API. Provides webhook handling and seamless integration with Meta's WhatsApp Business platform.23-
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to store and retrieve persistent memories with a web management interface. Supports creating, searching, and managing memories through natural language commands or a visual web dashboard.141MIT

Meshy MCP Serverofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to create, manage, and download 3D models, textures, images, rigged characters, and animations through natural conversation.1,90641MIT- AlicenseNot gradedqualityDmaintenanceEnables conversational image generation, editing, and refinement through OpenAI models with session memory for iterative creative workflows.1MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/asashiki/sticker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server