
Pylon Mcp
- 4 repo stars
- Updated July 23, 2026
- JustinBeckwith/pylon-mcp
io.github.JustinBeckwith/pylon-mcp is a MCP server that connects agents to the Pylon customer support platform over stdio.
About
io.github.JustinBeckwith/pylon-mcp connects AI coding assistants to the Pylon customer support platform through Model Context Protocol. If you run support in Pylon while building your SaaS alone, registering this server lets agents pull context, draft replies, or execute Pylon-backed workflows from Claude Code or Cursor instead of constant tab switching. It belongs in Grow under support operations when real users generate tickets and you need faster resolution without hiring a dedicated desk on day one. The server ships as pylon-mcp on npm at version 1.1.2 with stdio transport. You must already use Pylon and configure whatever API keys or tokens the repository documents. This is an integration layer, not a full help-center authoring skill or churn analytics suite.
- MCP server for the Pylon customer support platform (pylon-mcp v1.1.2)
- stdio npm transport for Claude Code, Cursor, and other MCP clients
- Helps solo founders wearing support hat triage issues from the agent
- Scoped to Pylon—not Intercom, Zendesk, or generic email
- Repository: github.com/JustinBeckwith/pylon-mcp
Pylon Mcp by the numbers
- Data as of Jul 24, 2026 (Skillselion catalog sync)
claude mcp add pylon-mcp -- npx -y pylon-mcpAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 4 |
|---|---|
| Package | pylon-mcp |
| Transport | STDIO |
| Auth | None |
| Last updated | July 23, 2026 |
| Repository | JustinBeckwith/pylon-mcp ↗ |
What it does
Let your agent read and act on Pylon customer support data so you handle tickets and account issues without switching out of the IDE.
Who is it for?
Best when you're already on Pylon and want MCP access to support workflows from Claude Code or Cursor.
Skip if: Skip if you're on Zendesk, Intercom, or email-only support stacks, or products with no live customer support volume yet.
What you get
After setup, your agent can use Pylon MCP tools so support work stays inside your agent session alongside code and docs.
- Agent-accessible Pylon support operations via MCP
- Faster ticket context gathering without leaving the dev environment
- Support workflows aligned to the Pylon platform APIs
By the numbers
- Server version 1.1.2
- Transport: stdio
- npm identifier: pylon-mcp
README.md
pylon-mcp

MCP (Model Context Protocol) server for Pylon customer support platform.
Installation
corepack enable
pnpm install
pnpm run build
Configuration
Copy the example environment file:
cp .env.example .envEdit
.envand add your Pylon API token:PYLON_API_TOKEN=your_api_token_here
You can generate an API token from the Pylon dashboard. Note: Only Admin users can create API tokens.
Usage
With Claude Desktop
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"pylon": {
"command": "node",
"args": ["--env-file", "/path/to/pylon-mcp/.env", "/path/to/pylon-mcp/dist/index.js"]
}
}
}
With Claude Code
Add to your Claude Code MCP settings:
{
"mcpServers": {
"pylon": {
"command": "node",
"args": ["--env-file", "/path/to/pylon-mcp/.env", "/path/to/pylon-mcp/dist/index.js"]
}
}
}
Available Tools
Organization
pylon_get_organization- Get information about your Pylon organization
Accounts
pylon_list_accounts- List all accounts with paginationpylon_get_account- Get a specific account by IDpylon_create_account- Create a new accountpylon_update_account- Update an existing accountpylon_delete_account- Delete an accountpylon_search_accounts- Search accounts with filters
Contacts
pylon_list_contacts- List all contacts with paginationpylon_get_contact- Get a specific contact by IDpylon_create_contact- Create a new contactpylon_update_contact- Update an existing contactpylon_delete_contact- Delete a contactpylon_search_contacts- Search contacts with filters
Issues
pylon_list_issues- List issues within a time rangepylon_get_issue- Get a specific issue by IDpylon_create_issue- Create a new issue/ticketpylon_update_issue- Update an existing issuepylon_delete_issue- Delete an issuepylon_search_issues- Search issues with filterspylon_snooze_issue- Snooze an issue until a specific timepylon_get_issue_followers- Get issue followerspylon_update_issue_followers- Add/remove issue followers
Messages
pylon_redact_message- Redact a message from an issue
Tags
pylon_list_tags- List all tagspylon_get_tag- Get a specific tag by IDpylon_create_tag- Create a new tagpylon_update_tag- Update an existing tagpylon_delete_tag- Delete a tag
Teams
pylon_list_teams- List all teamspylon_get_team- Get a specific team by IDpylon_create_team- Create a new teampylon_update_team- Update an existing team
Requirements
- Node.js 24+
- Pylon API token (Admin access required)
License
MIT
Recommended MCP Servers
How it compares
Pylon platform MCP integration, not a generic ticket-writing agent skill without API access.
FAQ
Who is io.github.JustinBeckwith/pylon-mcp for?
It is for developers using Pylon for customer support who want their AI assistant to interact with Pylon through MCP tools.
When should I use io.github.JustinBeckwith/pylon-mcp?
Use it in Grow when you are handling customer tickets and need agent access to Pylon data and actions.
How do I add io.github.JustinBeckwith/pylon-mcp to my agent?
Install pylon-mcp from npm, configure stdio in your MCP client, and add Pylon API credentials per the GitHub repository instructions.