Pylon MCP Server
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., "@Pylon MCP ServerSearch for open issues with high priority"
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.
Pylon MCP Server
MCP (Model Context Protocol) server for integrating with the Pylon API. This server provides tools for managing accounts, issues, messages, and custom fields in Pylon.
Features
Accounts: List, get, create, and update accounts
Issues: List, get, create, update, and search support issues with advanced filters
Messages: Get issue messages and redact messages
Custom Fields: List, get, create, and update custom fields
Related MCP server: Pylon MCP Server
Prerequisites
Node.js 18 or higher
A Pylon account with API access
Pylon API token
Installation
Clone or navigate to the project directory:
cd pylon-mcp-serverInstall dependencies:
npm installSet up your environment variables:
cp env.example .envEdit
.envand add your Pylon API token:
PYLON_API_TOKEN=your_pylon_api_token_hereConfiguration in Cursor
Add the following to your Cursor MCP settings file (~/.cursor/mcp.json or the project's .cursor/mcp.json):
{
"mcpServers": {
"pylon": {
"command": "node",
"args": ["/path/to/pylon-mcp-server/src/index.js"],
"env": {
"PYLON_API_TOKEN": "your_pylon_api_token_here"
}
}
}
}Replace /path/to/pylon-mcp-server with the actual path to this project.
Available Tools
Accounts
Tool | Description |
| List all accounts with optional pagination |
| Get a specific account by ID |
| Create a new account |
| Update an existing account |
Issues
Tool | Description |
| List issues within a time range |
| Get a specific issue by ID |
| Create a new issue |
| Update an existing issue |
| Search issues with advanced filters (state, priority, assignee, tags, etc.) |
Messages
Tool | Description |
| Get all messages for a specific issue |
| Redact a specific message in an issue |
Custom Fields
Tool | Description |
| List custom fields by object type (account, issue, contact) |
| Get a specific custom field by ID |
| Create a new custom field |
| Update an existing custom field |
Usage Examples
List accounts
List all accounts in PylonGet issues from last week
List all issues from the last 7 daysCreate a new account
Create a new account named "Acme Corp" with domain "acme.com"Search for open high-priority issues
Search for all open issues with high or urgent priorityThe pylon_search_issues tool supports complex filters with AND/OR operators:
{
"filter": {
"operator": "and",
"subfilters": [
{ "field": "state", "operator": "equals", "value": "open" },
{ "field": "priority", "operator": "in", "values": ["high", "urgent"] }
]
},
"limit": 50
}Available filter fields: state, priority, assignee.id, account.id, tags, requester.email, source, team.id
Create a custom field
Create a select custom field called "Priority Level" for issues with options: Low, Medium, HighAPI Reference
For more information about the Pylon API, see:
Development
Run in development mode with auto-reload:
npm run devLicense
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/gasconc/pylon-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server