Pomavo 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., "@Pomavo MCP ServerSearch for tickets assigned to me."
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.
Pomavo MCP Server
MCP (Model Context Protocol) server for interacting with the Pomavo ticket management system. This enables AI assistants like GitHub Copilot to manage tickets through natural language.
Installation
cd Pomavo.MCP
uv syncRelated MCP server: MCP DevOps Plan Server
Configuration
Set the following environment variables:
POMAVO_API_URL=https://localhost:7124
POMAVO_API_KEY=ck_your_api_key_here
POMAVO_ORG_SHORT_NAME=your_org_short_name
POMAVO_VERIFY_SSL=false # Set to false for local developmentOr create a .env file with these values.
Usage
Running the server
uv run pomavo-mcpVS Code Integration
Add to your VS Code MCP settings (mcp.json):
{
"servers": {
"pomavo": {
"type": "stdio",
"command": "uv",
"args": ["--directory", "C:/path/to/Pomavo.MCP", "run", "pomavo-mcp"],
"env": {
"POMAVO_API_URL": "https://localhost:7124",
"POMAVO_API_KEY": "ck_your_api_key",
"POMAVO_ORG_SHORT_NAME": "POMAVO",
"POMAVO_VERIFY_SSL": "false"
}
}
}
}Available Tools
Skills (on-demand reference)
The DSL-heavy tools keep short descriptions and defer their full reference to a
skill — a SKILL.md file under skills/. Load the relevant skill
before writing a query or report layout.
Tool | Description | Example |
| Return a skill's full markdown reference |
|
Skill | Covers | Referenced by |
| Read/filter search DSL (operators, fields, |
|
| Bulk mutations: |
|
| Report layout language: layout tags, chart components, |
|
| Ticket template screen layout language: | template screen |
| Authoring ticket templates: mandatory fields (Title/Description/Author/Assignee), field types, screens, workflow, sequence config |
|
| Authoring workflows: state categories (initial/default/terminal), the required |
|
| Template screen types (create/issues/section/preview-*/card) and the create/update/delete screen tools |
|
| Authoring relationship (link) types: name + outward/inward names |
|
| Authoring shared org-level fields and attaching them to templates |
|
| Incremental automation authoring: node catalog by category, type system + assignability, stable aliases, |
|
Skills are plain SKILL.md files (YAML frontmatter + markdown body), so this folder
doubles as an importable skill source for Agent Studio.
Ticket Management
Tool | Description | Example |
| Create a new ticket |
|
| Get ticket by ID or sequence |
|
| Update ticket fields |
|
| Search with DSL query |
|
State Transitions
Tool | Description | Example |
| List available transitions |
|
| Change ticket state by name |
|
Comments
Tool | Description | Example |
| List all comments on a ticket |
|
| Add a comment |
|
| Edit an existing comment |
|
| Delete a comment |
|
Ticket Linking
Tool | Description | Example |
| List all links for a ticket |
|
| List available link types |
|
| Create a link between tickets |
|
| Remove a link |
|
Projects & Iterations
Tool | Description | Example |
| List all projects |
|
| Get project details |
|
| List sprints for a project |
|
| Get active sprint |
|
Templates
Tool | Description | Example |
| List all ticket templates |
|
| Get template with fields |
|
| Create a template (fields + screens + workflow) |
|
| Edit name/description/icon/color |
|
| Point a template at another workflow |
|
| Soft-delete a template |
|
Screens
Tool | Description | Example |
| Add a screen to a template |
|
| Edit one screen (by id or name) |
|
| Remove a screen |
|
Workflows
Tool | Description | Example |
| List workflows |
|
| Get states + transitions |
|
| Create a workflow |
|
| Replace states/transitions in bulk |
|
| Delete a workflow |
|
| Add one state |
|
| Remove one state (+ its transitions) |
|
| Add one transition |
|
| Remove one transition |
|
Template Links
Tool | Description | Example |
| List relationship types |
|
| Create a relationship type |
|
| Edit a relationship type |
|
| Delete a relationship type |
|
Shared Fields
Tool | Description | Example |
| List org-level shared fields |
|
| Create a shared field |
|
| Edit a shared field |
|
| Delete a shared field ( |
|
| Attach to a template |
|
| Detach from a template |
|
Automations
Tool | Description | Example |
| Create an empty rule |
|
| Edit nodes (load |
|
| Wire/unwire edges |
|
| Delete an entire rule |
|
Reports
Tool | Description | Example |
| List a project's reports |
|
| Get a report's layout + variables |
|
| Create a project report |
|
| Edit an existing report |
|
Search Query DSL
The search_tickets tool supports a powerful query language:
Common Searches
# Find all bugs
template = "Bug Report"
# Find open bugs
template = "Bug Report" and status != "Done"
# Find high priority items
Priority = "high" or Priority = "critical"
# Find by title
Title contains "login"
# Find recent tickets
created_at >= d'-7d'Operators
=,!=- Equality<,<=,>,>=- Comparisoncontains,not contains- Text searchand,or,not- Logical operators
Date Literals
Absolute:
d'2025-01-15'Relative:
d'today',d'-7d'(7 days ago),d'+3d'(3 days from now)
Sorting
status = "Open" order by created_at desc
Priority = "high" order by updated_at descLink Types
Common link types (use list_link_types to see all):
ID | Name | Outward | Inward |
1 | Hierarchy | "is parent of" | "is child of" |
2 | Blocks | "blocks" | "is blocked by" |
3 | Duplicates | "duplicates" | "is duplicated by" |
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/megashrieks/Pomavo.MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server