simple-support-system-mcp
Click 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., "@simple-support-system-mcplist open support tickets"
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.
simple-support-system-mcp
Local MCP server (stdio) for the REST API of the Simple Support System add-on for Concrete CMS. It lets an assistant work a support queue the way a human would: find the ticket, read it with its history, write a reply, move it to the next state. Projects, attachments and moderation are covered as well.
The server talks to any site that runs the package. Nothing is hardcoded, the site URL and the API key come from environment variables. It speaks stdio only and never opens a port.
Install
npm install
npm run buildRegister the server in Claude Code:
claude mcp add simple-support-system \
-e SIMPLE_SUPPORT_SYSTEM_BASE_URL=https://support.example.com \
-e SIMPLE_SUPPORT_SYSTEM_API_KEY=your-api-key \
-- node "/absolute/path/to/simple-support-system-mcp/dist/src/index.js"Or in ~/.claude.json / claude_desktop_config.json:
{
"mcpServers": {
"simple-support-system": {
"command": "node",
"args": ["/absolute/path/to/simple-support-system-mcp/dist/src/index.js"],
"env": {
"SIMPLE_SUPPORT_SYSTEM_BASE_URL": "https://support.example.com",
"SIMPLE_SUPPORT_SYSTEM_API_KEY": "your-api-key"
}
}
}
}Environment
Variable | Purpose |
| Required. Base URL of the Concrete CMS site, for example |
| API key of the installation, sent as the |
| Optional. Overrides the default API path for sites that do not use the |
| Optional. Default access token for private projects, used when a tool call passes no token of its own. |
| Optional. Request timeout in milliseconds, default |
The API key is generated when the package is installed and lives in the site config under simple_support_system.api_key. Calls without it run as an anonymous visitor: reading public projects and their approved tickets, creating tickets and writing comments still work, everything administrative (state changes, deleting, approving, projects) does not.
Tools
The three everyday tools are list_tickets, get_ticket and reply_to_ticket, plus set_ticket_state to move a ticket along.
Tool | Purpose |
| Lists tickets with filters for project, state, type, priority, assignee, text search and change date, sorted and paged. Compact summaries by default. |
| Reads one ticket with its attachments and, unless switched off, all of its comments. |
| Posts a reply as a comment on a ticket and triggers the notification mails. |
| Moves a ticket to another workflow state and notifies everyone involved. |
| Creates a ticket in a project, by project id or project handle, optionally with uploaded files. |
| Changes title, content, type, priority or assignee. Only the given fields are touched. |
| Approves a moderated ticket. |
| Deletes a ticket with all comments and attachment links. Irreversible, needs |
| Lists the comments of a ticket. |
| Replaces the text of a comment. |
| Approves a moderated comment. |
| Deletes a comment. Irreversible, needs |
| Lists the support projects, with access tokens when an API key is configured. |
| Reads one project by id. |
| Creates a project, private projects get a generated access token. |
| Changes name, handle or visibility of a project. |
| Deletes a project with every ticket and comment inside it. Irreversible, needs |
| Lists the files attached to a ticket. |
| Uploads a local file into the file manager and returns its file id. |
| Links uploaded file ids to a ticket. |
| Resolves the download URL of an attachment and can save it to a local path. |
| Removes a file from a ticket. Irreversible, needs |
| Shows the configured API URL, whether a key is present and the accepted states, types and priorities. The key itself is never returned. |
Reading tools are annotated as read only, the four delete_ tools as destructive. All of them additionally require confirm: true, so a delete cannot happen as a side effect of a vague instruction. There is no trash and no restore on the API side, a deleted ticket, comment or project is gone.
Working a ticket
list_tickets { "state": "open", "sortBy": "updatedAt" }
get_ticket { "ticketId": 42 }
reply_to_ticket{ "ticketId": 42, "comment": "Thanks for the report, we are on it." }
set_ticket_state { "ticketId": 42, "state": "in_progress" }list_tickets also takes projectHandle instead of projectId and resolves it through the project list first.
Values the API accepts
States:
new,open,in_progress,on_hold,resolved,duplicate,invalid,wont_fix,closed.set_ticket_stateaccepts all of them exceptnew, which is only set when a ticket is created.Types:
bug,enhancement,proposal,taskPriorities:
trivial,minor,major,critical,blockerTickets in the state
closedorinvalidare locked: the API refuses edits of the ticket, its comments and its attachments until the state changes.
Attachments
upload_attachment { "filePath": "/tmp/screenshot.png" } -> fileId
add_ticket_attachments { "ticketId": 42, "fileIds": [123] }upload_attachment puts the file into the file manager of the site without linking it anywhere, the second call attaches it. create_ticket takes the same ids in attachmentFileIds.
Private projects
A private project is only reachable with its access token. Pass it per call as token, or set SIMPLE_SUPPORT_SYSTEM_PROJECT_TOKEN as the default. With an API key the token is not needed, the key already grants full access.
Notes on the API
The package answers in several shapes, the server normalises all of them so tools return the bare resource:
Collections come back as a plain array, single tickets and comments inside a
ticketorcommentkey, attachments insidedata.Failures arrive either as
{"errors": [...]}or as a ConcreteEditResponsewith anerrorflag. The second one can come with status 200, so a 200 alone is not treated as success. Every error becomes a tool error with the message the API sent.create_ticketanswers with a status envelope and not with the new record, so the id of a freshly created ticket has to be looked up withlist_tickets.download_attachmentfollows the redirect the API returns and reports the resolved URL.
Verification
npm run build
npm testThe tests run against a stubbed HTTP layer, they never touch a live site and need no credentials. They cover the URL and form encoding the PHP controllers expect (including PHP boolean and array notation), the response envelopes, the error mapping, the filtering and sorting of list_tickets, and the guard rails of the destructive tools.
License
MIT, see LICENSE.
This server cannot be installed
Maintenance
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/bitterdev/simple-support-system-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server