MCP server for Pylon customer support platform
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-justinbeckwith-pylon-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for Pylon customer support platform.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
IMAP/SMTP email MCP server — 47 tools, IMAP IDLE push, multi-account, AI triage.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
MCP Security Weekly
Get CVE alerts and security updates for io.github.JustinBeckwith/pylon-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for Pylon customer support platform.
corepack enable
pnpm install
pnpm run build
Copy the example environment file:
cp .env.example .env
Edit .env and 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.
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"]
}
}
}
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"]
}
}
}
pylon_get_organization - Get information about your Pylon organizationpylon_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 filterspylon_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 filterspylon_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 followerspylon_redact_message - Redact a message from an issuepylon_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 tagpylon_list_teams - List all teamspylon_get_team - Get a specific team by IDpylon_create_team - Create a new teampylon_update_team - Update an existing teamMIT