mcp-octane-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., "@mcp-octane-servershow me open defects 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.
OpenText ALM Octane MCP Server
A Model Context Protocol (MCP) server for OpenText ALM Octane. This server enables LLMs (like Claude, GitHub Copilot) to seamlessly execute queries, fetch defects, create work items, and interact with the Octane API directly through text instructions.
๐ Quick Start (NPX)
This package is published on the public NPM registry. The easiest way to run this MCP server is directly via npx (which will download and execute the latest version on the fly), without needing to clone the repository or install anything globally.
Simply provide your ALM Octane credentials as environment variables:
npx -y mcp-octane-server \
OCTANE_URL="https://almoctane-europe.saas.microfocus.com" \
OCTANE_SHARED_SPACE_ID="1001" \
OCTANE_WORKSPACE_ID="1002" \
OCTANE_CLIENT_ID="your-client-id" \
OCTANE_CLIENT_SECRET="your-client-secret"Related MCP server: WorkItems DevOps MCP Server
โ๏ธ Configuration Variables
The following environment variables are strictly required to start the server:
Variable | Description |
| Base Server URL of your Octane Instance. (e.g., |
| Numeric or String Identifier for the Shared Space. |
| Numeric or String Identifier for the Workspace within the Shared Space. |
| Your API Access Client ID created in Octane settings. |
| Your API Access Client Secret corresponding to the Client ID. |
๐ ๏ธ IDE & Client Setup
Claude Desktop
Add the following configuration to your mcpServers settings in the Claude configuration file claude_desktop_config.json:
{
"mcpServers": {
"octane": {
"command": "npx",
"args": ["-y", "mcp-octane-server"],
"env": {
"OCTANE_URL": "https://almoctane-europe.saas.microfocus.com",
"OCTANE_SHARED_SPACE_ID": "1001",
"OCTANE_WORKSPACE_ID": "1002",
"OCTANE_CLIENT_ID": "your-client-id",
"OCTANE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Visual Studio Code (MCP Extension)
Create or append to the .vscode/settings.json file in your workspace:
{
"mcp.servers": {
"octane": {
"command": "npx",
"args": ["-y", "mcp-octane-server"],
"env": {
"OCTANE_URL": "https://almoctane-europe.saas.microfocus.com",
"OCTANE_SHARED_SPACE_ID": "1001",
"OCTANE_WORKSPACE_ID": "1002",
"OCTANE_CLIENT_ID": "your-client-id",
"OCTANE_CLIENT_SECRET": "your-client-secret"
}
}
}
}Note: Using npx -y mcp-octane-server in your IDE configuration is recommended as it ensures your client always fetches the latest version of the server from NPM upon startup. If you prefer to install it globally (npm i -g mcp-octane-server), you can replace the command array with simply mcp-octane.
๐ฆ Global Installation
If you intend to run the server frequently from your terminal outside of an IDE, you can install it globally on your system:
npm install -g mcp-octane-serverAfter global installation, you can run the server using the compiled executable name directly from anywhere:
mcp-octane \
OCTANE_URL="https://almoctane-europe.saas.microfocus.com" \
OCTANE_SHARED_SPACE_ID="1001" \
OCTANE_WORKSPACE_ID="1002" \
OCTANE_CLIENT_ID="your-client-id" \
OCTANE_CLIENT_SECRET="your-client-secret"๏ฟฝ๐ณ Docker Usage
You can also run the server via a pre-built Docker image. To run the server ensuring proper network resolution and passing standard input/output:
docker run -i --rm \
-e OCTANE_URL="https://almoctane-europe.saas.microfocus.com" \
-e OCTANE_SHARED_SPACE_ID="1001" \
-e OCTANE_WORKSPACE_ID="1002" \
-e OCTANE_CLIENT_ID="your-client-id" \
-e OCTANE_CLIENT_SECRET="your-client-secret" \
mcp-octane-server๐ง Available Tools & Prompts
Tools:
search_all,get_defect_details,create_defect,update_defect,create_story,update_story_status,get_manual_test,get_suite_runs,get_run_history,get_my_work.Prompts:
triage_assistance(Analyzes defect data using the LLM and suggests 3 root causes from provided context).
๐๏ธ Local Development
Clone this repository.
Run
npm install.Create a
.envfile referencing.env.example.Run
npm run buildto compile the app.Use
npm run startto spin up the local build, or test live usingnpm run dev.
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.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables automated access to LoadRunner Cloud APIs for retrieving performance test data, managing projects, and collecting test results. Supports integration with AI clients for building performance engineering workflows and dashboards.Last updated9
- Flicense-qualityFmaintenanceEnables LLMs and AI applications to interact with Azure DevOps Work Items, supporting queries, filtering, status updates, date management, effort tracking, descriptions, and comments through natural language.Last updated
- AlicenseAqualityBmaintenanceEnables AI agents to interact with HP ALM / Quality Center for QA workflows including test case management, test execution, defect tracking, and requirements management.Last updated341MIT
- Alicense-qualityBmaintenanceEnables AI assistants to query, create, and manage Targetprocess entities like user stories, bugs, tasks, and features through natural language and structured tools.Last updated4695ISC
Related MCP Connectors
Connect to Atlassian Jira, Confluence, and Compass to search, create, and manage your work.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/prakashbsamanta/mcp-octane-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server