Skip to main content
Glama
OctopusDeploy

Octopus Deploy MCP Server

Official

Read an Octopus resource by URI

read_resource
Read-onlyIdempotent

Fetch the full body of any 'octopus://' URI returned by other tools, such as release or task resources. Pass the URI verbatim to retrieve JSON payloads.

Instructions

Universal fetch for any 'octopus://' URI returned by any other tool. Use this whenever you see fields like 'resourceUri' or 'taskResourceUri' in a response and need the full body.

How to use:

  • Pass the URI string verbatim. Examples: 'octopus://spaces/Default/releases/Releases-42', 'octopus://spaces/Default/tasks/ServerTasks-7', 'octopus://spaces/Default/tasks/ServerTasks-7/details'.

  • The response 'mimeType' tells you how to interpret 'text': 'application/json' → parse as JSON.

This tool is the backstop for clients that do not natively implement the MCP 'resources/read' primitive. Clients that DO support resources/read (Claude Code, MCP Inspector) can call it directly and skip this tool. Either path returns byte-identical bodies.

Tools that return resource URIs include: find_releases, get_deployment_from_url, get_task_from_url, and others. When in doubt, call read_resource on any 'octopus://' string you encounter.

Note: there is intentionally no octopus://...tasks/{id}/log resource. Call the grep_task_log tool to search task logs without inhaling the full body.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uriYesAny 'octopus://...' URI returned by another tool (e.g. in the resourceUri or taskResourceUri field).
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnly=true, destructive=false, idempotent=true. Description adds context: returns byte-identical bodies, how to interpret response (mimeType/text), and that it's a backstop for clients without resources/read. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with clear sections and headings. Each sentence adds value, but slightly verbose; could be more concise. Still, very effective.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Comprehensive: explains purpose, usage, response interpretation (mimeType/text), limitations (no task log resource), and even mentions alternative (grep_task_log). All gaps covered despite no output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage 100% with one parameter. Description adds value by specifying 'pass the URI string verbatim', providing concrete examples, and explaining the origin of URIs (from other tools).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it is a 'Universal fetch for any octopus:// URI' returned by other tools, specifies the exact use case, and distinguishes itself from siblings by noting that clients with native resources/read support can skip this tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit instructions: pass URI verbatim, examples provided, when to use (whenever you see resourceUri fields), when not to use (task log, directing to grep_task_log instead), and lists sibling tools that return URIs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/OctopusDeploy/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server