npm sharecut-mcpstreamable-httpMITupdated 8d ago
MCP server for ShareCut — generate QR codes, create trackable short links, re-point them after the QR is printed, and read their click analytics from Claude, Cursor, or any MCP client.
What can you do with ShareCut QR & Short Links?
sharecut-mcp
MCP server for ShareCut — generate QR codes, create trackable short links, re-point them after the QR is printed, and read their click analytics from Claude, Cursor, or any MCP client.
QR codes, link expansion and short-code checks are free and need no account.
Install
Remote server, nothing to install:
claude mcp add --transport http sharecut https://sharecut.site/mcp
Or run this package over stdio:
npx sharecut-mcp
{
"mcpServers": {
"sharecut": {
"command": "npx",
"args": ["-y", "sharecut-mcp"],
"env": { "SHARECUT_API_KEY": "sc_live_..." }
}
}
}
SHARECUT_API_KEY is optional — leave it out and the three free tools still work.
Free tools — no API key, no account
| Tool | What it does |
|---|---|
create_qr |
Renders any URL or text as a QR code: SVG, plus a PNG data URL with format: "png", and an optional hex color. The code is static — the destination is baked into the pattern, so once printed it points there forever. |
expand_short_link |
Resolves a sharecut.site short link to its real destination and click count, without opening it. |
check_short_code |
Tells you whether a custom short code is still free before you try to claim it. |
Tools that need an API key
The interesting half. All of them act on the account the key belongs to.
update_link — the reason this server exists
Changes where an existing short link points. A ShareCut QR encodes the short link, not the destination, so re-pointing the link redirects every copy already printed, shared or stuck on a wall — and the click history comes along.
That difference is the whole point. A poster, a menu, a business card or a product label outlives the URL printed on it. A static QR does not survive a site migration or a campaign change; this one does.
The short code itself is deliberately immutable here: changing it would break every copy already in circulation.
The rest
| Tool | What it does |
|---|---|
shorten_url |
Creates a short link plus its QR code. Optional customCode, title and utm. Destinations are screened against Google Safe Browsing. |
shorten_urls_bulk |
Up to 25 links in one call, with per-item results so one bad URL does not discard the rest. |
list_links |
Lists your links with click counts — filter by kind or search term, sort by newest or most clicked. |
get_link |
Destination, title, clicks, creation date and UTM settings for one link. |
get_link_analytics |
Clicks over time, plus breakdowns by country, device, OS, browser and referrer. |
get_link_qr |
The QR code of an existing link, using the artwork saved on it (frames, colours, logo) when there is one. |
delete_link |
Permanent, and it releases the short code. Needs an explicit confirm. |
get_account |
Plan, entitlements and how much API quota is left this month. Worth calling before a bulk run. |
API key
Create it at sharecut.site/p/profile — API
access is part of the Business plan — then pass it as SHARECUT_API_KEY.
There is no programmatic sign-up: a person creates the key. See auth.md for the full authentication contract.
How it works
This package is a thin stdio bridge to https://sharecut.site/mcp. It moves
newline-delimited JSON-RPC to that endpoint and back, which means zero
dependencies (fast npx start) and no upgrades to chase: the tools live on the
server, so new ones reach you without touching your config.
Point SHARECUT_MCP_URL elsewhere to target a different deployment.
Links
- Documentation — https://sharecut.site/p/api/
- OpenAPI — https://sharecut.site/openapi.json
- Server card — https://sharecut.site/.well-known/mcp/server-card.json
MIT
Install
Add ShareCut QR & Short Links to your client. Pick the one you use.
{
"servers": {
"sharecut-mcp": {
"type": "http",
"url": "https://sharecut.site/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add sharecut-mcp -- npx -y sharecut-mcpcodex mcp add sharecut-mcp -- npx -y sharecut-mcpamp mcp add sharecut-mcp -- npx -y sharecut-mcp{
"mcpServers": {
"sharecut-mcp": {
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"sharecut-mcp": {
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"sharecut-mcp": {
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"sharecut-mcp": {
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"sharecut-mcp": {
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"sharecut-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"sharecut-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"sharecut-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"sharecut-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y sharecut-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust13/20
- Capability0/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Aug 31, 2026 |
| 1.0.1 | Aug 24, 2026 |