- Home
- MCP servers
- DevOps Plan
DevOps Plan
- javascript
0
GitHub Stars
javascript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mrchris2000-mcp-devops-plan": {
"command": "npx",
"args": [
"@securedevops/mcp-devops-plan",
"--token",
"your_token_here",
"--server-url",
"https://your-server.com/plan",
"--teamspace-id",
"your_teamspace_id"
],
"env": {
"PLAN_SERVER_URL": "https://your-server.com/plan",
"PLAN_ACCESS_TOKEN": "YWJjZGVmMTIz",
"PLAN_TEAMSPACE_ID": "teamspace_01"
}
}
}
}You deploy and use this MCP server to manage DevOps Plan work items through standardized MCP clients. It lets you discover projects, create and fetch work items, and filter or delete items to keep your planning and execution aligned across teams.
How to use
Connect with an MCP client to interact with the DevOps Plan MCP server. Start by listing available applications, then drill into projects, components, and work item types before creating or querying items. Use the server to filter by type or owner, retrieve detailed item lists, and perform cleanup when needed.
How to install
Prerequisites: you need Node.js installed on your system. You should also have network access to your Plan instance.
Step 1: Quick setup and run using NPX
npx @securedevops/mcp-devops-plan --token "your_token" --server-url "https://your-server.com/plan" --teamspace-id "your_teamspace_id"
Step 2: Alternative – running via a global installation
npm install -g @securedevops/mcp-devops-plan
mcp-devops-plan --token "your_token" --server-url "https://your-server.com/plan" --teamspace-id "your_teamspace_id"
Step 3: Local development workflow
git clone https://github.com/securedevops/mcp-devops-plan.git
cd mcp-devops-plan
npm install
npm run setup # Interactive configuration setup
npm start # Start the MCP server
Additional sections
Configuration options are provided for quick setup, environment variables, and explicit command-line usage. You can tailor the server to your Plan instance by choosing the setup flow that matches your deployment strategy.
Configuration options are described below and cover the interactive setup, environment variables, and command-line arguments.
Available tools
get_applications
Retrieves all applications from Plan to understand which areas you can work with.
get_available_projects
Lists projects within a selected application to identify scope and targets.
get_available_components
Retrieves components for a specific project to organize work items.
get_available_workitem_types
Returns the available work item types for a project to guide creation.
create_work_item
Creates a new work item in Plan with a given title, description, type, and association to a project.
get_work_items
Fetches work items for a given application and project, with optional filters for type and owner.
delete_work_item
Deletes a specific work item by its database identifier from a project.