@stampui/mcp
OfficialClick 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., "@@stampui/mcpadd an FAQ section block"
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.
@stampui/mcp
MCP (Model Context Protocol) server for StampUI. Lets an AI coding agent browse the StampUI block registry and stamp blocks into a project as real .tsx source files, without leaving the editor: "add an FAQ section" becomes search, inspect, install.
Tools
Tool | What it does |
| List blocks, filter by |
| Free-text search across slug, title, description, tags |
| Full manifest, install command, docs link, and source (free blocks) or an unlock note (pro blocks) |
| Write a block's files into the project at an absolute |
The registry data and free block sources come from the MIT @stampui/blocks package; the manifest format is documented in the open block manifest spec.
Related MCP server: aceternityui-mcp
Setup
Claude Code
claude mcp add stampui -- npx -y @stampui/mcpClaude Desktop
Add to claude_desktop_config.json (Settings > Developer > Edit Config):
{
"mcpServers": {
"stampui": {
"command": "npx",
"args": ["-y", "@stampui/mcp"]
}
}
}Cursor and other MCP clients
Add the same entry to the client's MCP config (e.g. ~/.cursor/mcp.json):
{
"mcpServers": {
"stampui": {
"command": "npx",
"args": ["-y", "@stampui/mcp"]
}
}
}Free vs pro
Everything needed for free blocks works offline and without an account: sources ship inside @stampui/blocks.
Pro blocks are part of the commercial StampUI catalog. Their source is not in this package or any public repo. With a license key, set it in the server's environment and pro sources are fetched from the licensed registry per request:
claude mcp add stampui --env STAMPUI_TOKEN=SU_LIVE_-XXXX -- npx -y @stampui/mcpWithout a token, pro blocks still appear in listings and get_block explains how to unlock them; the server never attempts to bypass licensing, and PRs adding such behavior will be closed.
Environment variables
Variable | Meaning | Default |
| Commercial license key; only needed for pro blocks | unset |
| Registry origin, useful for testing |
|
Security notes
The server runs locally over stdio; it makes network requests only for pro block fetches, over HTTPS to the registry.
stamp_blockwrites files. It requires an absolutetargetDirand refuses paths that resolve outside it. Review what your agent installs like any other code it writes; MCP clients ask for permission before tool calls by default, keep that on forstamp_block.Your license key is read from the environment and sent only in the
Authorizationheader to the registry. Never paste it into chat.Report vulnerabilities per SECURITY.md.
Development
git clone https://github.com/StampUI/mcp
cd mcp
npm install
npm run build
# exercise it with the MCP inspector:
npx @modelcontextprotocol/inspector node dist/index.jsLinks
StampUI: https://stampui.com
Free component source: https://github.com/StampUI/ui
Changelog: CHANGELOG.md
License
MIT for this server. Free blocks it delivers are MIT via @stampui/blocks; pro blocks are covered by the StampUI commercial license.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/StampUI/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server