Shortcut MCP Server
This is the endpoint for Shortcut's hosted Model Context Protocol server. It's meant to be used by an MCP client (such as Cursor, VS Code, or Claude), not opened directly in a browser. Add the configuration below to your editor to connect.
Server URL
https://mcp2.shortcut.com/mcp
No API token required — authentication is handled via OAuth. Your client will prompt you to authorize with your Shortcut account on first use.
Claude Code
Run this command, then authorize with your Shortcut account when prompted:
claude mcp add --transport http shortcut https://mcp2.shortcut.com/mcpCursor
Add this to ~/.cursor/mcp.json (or .cursor/mcp.json in your project), then restart Cursor:
{
"mcpServers": {
"shortcut": {
"url": "https://mcp2.shortcut.com/mcp"
}
}
}VS Code
Add this to your mcp.json:
{
"servers": {
"shortcut-mcp": {
"type": "http",
"url": "https://mcp2.shortcut.com/mcp"
}
}
}Other clients
For additional clients, see the setup documentation.