io.github.Bonsai-Tech-LLC/clypt
AI-native link intelligence β shorten, track, and manage links from any AI agent
Ask AI about io.github.Bonsai-Tech-LLC/clypt
Powered by Claude Β· Grounded in docs
I know everything about io.github.Bonsai-Tech-LLC/clypt. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Clypt MCP Server
An MCP (Model Context Protocol) server that connects AI assistants to Clypt β the AI-Powered Link Intelligence platform. Shorten links, view analytics, manage tags and folders, all from Claude, ChatGPT, Cursor, or any MCP-compatible client.
Quick Start
npx clypt-mcp
You'll need a Clypt API key. Get one at clypt.io/dashboard/settings.
Installation
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"clypt": {
"command": "npx",
"args": ["-y", "clypt-mcp"],
"env": {
"CLYPT_API_KEY": "clypt_your_key_here"
}
}
}
}
Cursor
Add to your Cursor MCP settings (.cursor/mcp.json):
{
"mcpServers": {
"clypt": {
"command": "npx",
"args": ["-y", "clypt-mcp"],
"env": {
"CLYPT_API_KEY": "clypt_your_key_here"
}
}
}
}
Global Install
npm install -g clypt-mcp
CLYPT_API_KEY=clypt_your_key_here clypt-mcp
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
CLYPT_API_KEY | Yes | - | Your Clypt API key |
CLYPT_BASE_URL | No | https://clypt.io | Custom API base URL |
Available Tools
shorten_link
Create a shortened Clypt link.
url(required) β The URL to shortenslugβ Custom short codetagsβ Tags to attachexpiresAtβ Expiration date (ISO 8601)passwordβ Password protectionfolderIdβ Folder to organize into
list_links
List your shortened links with search and filtering.
searchβ Search by URL, title, or short codetagβ Filter by taglimitβ Results per page (max 100)offsetβ Pagination offset
get_link_analytics
Get click analytics for a specific link.
linkId(required) β Link ID or short codeperiodβ Time period:7d,30d,90d, orall
get_dashboard_stats
Get high-level dashboard statistics (total links, clicks, top performers). No parameters required.
generate_qr_code
Generate a QR code for any URL.
url(required) β URL to encodesizeβ Size in pixels (100-1000)fgColorβ Foreground hex colorbgColorβ Background hex color
manage_tags
Create or list tags.
action(required) βcreateorlistnameβ Tag name (for create)colorβ Tag color hex (for create)
manage_folders
Create or list folders.
action(required) βcreateorlistnameβ Folder name (for create)parentIdβ Parent folder ID (for create)
bulk_shorten
Shorten multiple URLs at once (max 25).
urls(required) β Array of URLstagsβ Tags for all linksfolderIdβ Folder for all links
delete_link
Delete a link by ID.
linkId(required) β Link ID to delete
Example Usage
Once configured, you can ask your AI assistant things like:
"Shorten https://example.com/my-long-article-url with the tag 'marketing'"
"Show me analytics for my top links this month"
"Create a QR code for clypt.io/abc123"
"List all my links tagged 'campaign-q1'"
"Bulk shorten these 5 URLs for our newsletter"
Development
git clone https://github.com/Bonsai-Tech-LLC/clypt-mcp.git
cd clypt-mcp
npm install
npm run build
CLYPT_API_KEY=your_key node dist/index.js
License
MIT - See LICENSE for details.
Links
- Clypt β AI-Powered Link Intelligence
- Clypt API Docs
- MCP Protocol
- Report Issues
