suporta-mcp
v1.1.1
Published
MCP server for Suporta Helpdesk — manage tickets from Claude Code
Downloads
422
Maintainers
Readme
Suporta MCP Server
Connect Claude Code to your Suporta helpdesk — manage tickets, search, and post replies directly from your editor.
Works with any project (Laravel, Vue, React, Node, etc.).
Quick Setup (2 minutes)
1. Generate an API Token
- Open your Suporta instance (e.g.
https://bitpeak.suportahub.com) - Go to Settings → API Tokens
- Click Generate New Token
- Enter a name (e.g.
Claude MCP) - Select the projects you want Claude to access
- Click Generate and copy the token immediately — it's shown only once
2. Add to your project
Create .mcp.json in your project root:
{
"mcpServers": {
"suporta": {
"command": "npx",
"args": ["-y", "suporta-mcp"],
"env": {
"SUPORTA_URL": "https://your-tenant.suportahub.com",
"SUPORTA_TOKEN": "your-api-token-here"
}
}
}
}3. Restart Claude Code
After saving .mcp.json, restart Claude Code (or run /mcp to reload servers). Verify with:
"who am I on Suporta?"
Claude should respond with your name and role. That's it — you're connected.
Available Tools
| Tool | Description | Example prompt |
|------|-------------|----------------|
| who-am-i | Verify your connection | "who am I on Suporta?" |
| list-projects | List all accessible projects | "show my projects" |
| get-ticket | Fetch ticket details by slug or URL | "get ticket 1035-bug-ticket" or paste the ticket URL |
| list-my-tickets | List your assigned tickets | "show my open tickets" |
| search-tickets | Search by keyword | "search for tickets about login" |
| create-ticket | Create a new ticket | "create a P1 ticket in project bitpeak about login bug" |
| update-ticket | Update status, priority, assignees, etc. | "set ticket 1035-bug-ticket to Closed" |
| post-ticket-reply | Post a reply (internal or client-visible) | "post an internal note on ticket 1035-bug-ticket" |
Usage Examples
Fetch a ticket from URL:
Paste
https://bitpeak.suportahub.com/ticket/1035-bug-ticketand Claude will extract the slug and fetch details.
Filter your tickets:
"show my overdue tickets" "list my open tickets due this week"
Create a ticket:
"create a ticket in project bitpeak: Login page returns 500 on invalid email"
Update a ticket:
"set ticket 1035-bug-ticket priority to P1 and assign to user 14" "close ticket 1035-bug-ticket"
Implement a ticket:
"fetch ticket 1035-bug-ticket and implement it"
Claude will read the ticket, analyze the codebase, create a branch, implement the changes, and post a summary back on the ticket.
Post an internal note:
"post an internal note on ticket 1035-bug-ticket saying the fix is deployed"
Multiple Projects / Tenants
Each project gets its own .mcp.json with its own token and URL. This means:
- Project A → connects to
https://clienta.suportahub.comwith token scoped to Project A's projects - Project B → connects to
https://clientb.suportahub.comwith a different token
Tokens are scoped to specific projects at generation time, so each developer only sees what they need.
Troubleshooting
"Not connected" error
- Check that
SUPORTA_URLandSUPORTA_TOKENare set in.mcp.json - Make sure the token hasn't been deleted in Settings → API Tokens
- Restart Claude Code after changing
.mcp.json
"API 401" error
- Your token is invalid or expired. Generate a new one in Settings → API Tokens
Tools not showing up
- Run
/mcpin Claude Code to check server status - Verify
nodeis available in your PATH - Make sure you have Node.js 18+ installed
