Skip to content

Release package version 0.4.1 that brings in work management tools #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Overview

A Model Context Protocol server for DevRev. This server provides comprehensive access to DevRev's APIs, allowing you to manage work items (issues, tickets), parts (enhancements), search across your DevRev data, and retrieve user information.
A Model Context Protocol server for DevRev. This server provides comprehensive access to DevRev's APIs, allowing you to manage work items (issues, tickets), parts (enhancements), meetings, workflow transitions, timeline entries, and sprint planning. Search across your DevRev data and retrieve user information with advanced filtering and pagination support.

## Tools

Expand All @@ -13,15 +13,23 @@ A Model Context Protocol server for DevRev. This server provides comprehensive a
### Work Items (Issues & Tickets)
- **`get_work`**: Get comprehensive information about a specific DevRev work item using its ID.
- **`create_work`**: Create new issues or tickets in DevRev with specified properties like title, body, assignees, and associated parts.
- **`update_work`**: Update existing work items by modifying properties such as title, body, assignees, or associated parts.
- **`update_work`**: Update existing work items by modifying properties such as title, body, assignees, associated parts, or stage transitions.
- **`list_works`**: List and filter work items based on various criteria like state, dates, assignees, parts, and more.

### Parts (Enhancements)
- **`get_part`**: Get detailed information about a specific part (enhancement) using its ID.
- **`create_part`**: Create new parts (enhancements) with specified properties including name, description, assignees, and parent parts.
- **`update_part`**: Update existing parts by modifying properties such as name, description, assignees, or target dates.
- **`update_part`**: Update existing parts by modifying properties such as name, description, assignees, target dates, or stage transitions.
- **`list_parts`**: List and filter parts based on various criteria like dates, assignees, parent parts, and more.

### Meetings & Communication
- **`list_meetings`**: List and filter meetings in DevRev based on various criteria such as channel, participants, dates, and meeting states.

### Workflow Management
- **`valid_stage_transition`**: Get a list of valid stage transitions for a given work item (issue, ticket) or part (enhancement). Use this before updating stages to ensure transitions are valid.
- **`add_timeline_entry`**: Add timeline entries to work items (issues, tickets) or parts (enhancements) to track updates and progress.
- **`get_sprints`**: Get active or planned sprints for a given part ID, useful for sprint planning and issue assignment.

## Prerequisites

Before using this MCP server, you need to install either `uvx` or `uv`, which are modern Python package and project management tools.
Expand Down Expand Up @@ -137,3 +145,7 @@ On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
- **Flexible Filtering**: Advanced filtering options for listing work items and parts based on dates, assignees, states, and more
- **User Context**: Access to current user information for personalized experiences
- **Rich Data Support**: Handle complex relationships between work items, parts, users, and organizations
- **Meeting Management**: List and filter meetings across different channels and states
- **Workflow Control**: Validate stage transitions and manage work item lifecycle
- **Timeline Tracking**: Add timeline entries to track progress and updates on work items and parts
- **Sprint Planning**: Access sprint information for effective project management and issue assignment
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "devrev-mcp"
version = "0.2.0"
version = "0.4.1"
description = "A MCP server project"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
4 changes: 3 additions & 1 deletion src/devrev_mcp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -1172,6 +1172,8 @@ async def handle_call_tool(
types.TextContent(
type="text",
text=f"Timeline entry created successfully: {timeline_response.json()}"
)
]
elif name == "get_sprints":
if not arguments:
raise ValueError("Missing arguments")
Expand Down Expand Up @@ -1219,7 +1221,7 @@ async def main():
write_stream,
InitializationOptions(
server_name="devrev_mcp",
server_version="0.2.0",
server_version="0.4.1",
capabilities=server.get_capabilities(
notification_options=NotificationOptions(),
experimental_capabilities={},
Expand Down