Skip to main content
Glama
arslanmusta

azure-devops-attachment-mcp-server

by arslanmusta

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AZURE_DEVOPS_PATYesPersonal Access Token. Sent only as a Basic auth header to AZURE_DEVOPS_URL; never logged.
AZURE_DEVOPS_URLYesCollection URL, e.g. https://tfs.company.local/tfs/DefaultCollection. Include the /tfs/<Collection> path used by your server.
AZURE_DEVOPS_PROJECTNoDefault team project for the attachment endpoints. The work item's own project takes precedence when known.
AZURE_DEVOPS_API_VERSIONNoREST api-version. 7.0 = Azure DevOps Server 2022, 6.0 = 2020, 5.0 = 2019.7.0
AZURE_DEVOPS_DOWNLOAD_DIRNoDirectory where download_attachment saves files when no outputDir is given.
AZURE_DEVOPS_ALLOW_INSECURE_TLSNoSet to true to accept self-signed certificates. Insecure; prefer NODE_EXTRA_CA_CERTS=/path/to/ca.pem.false

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_attachmentsA

List the file attachments of an Azure DevOps work item: name, size, comment, created date, attachment id (GUID) and URL.

add_attachmentA

Upload a local file and attach it to a work item (adds an AttachedFile relation). Simple upload limit: 130 MB. Returns the attachment id and the work item's new revision.

delete_attachmentA

Remove an attachment from a work item by attachment id or by a file name that is unique on the work item. Only the link is removed; Azure DevOps has no API to delete the stored file.

download_attachmentA

Download a work item attachment to a local directory by attachment id or unique file name. Existing files are never overwritten (a " (n)" suffix is added). Returns the absolute path of the saved file.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 4 tools

Disambiguation5/5

Each tool performs a clearly distinct action on attachments: list, upload, delete, and download. There is no overlap in purpose, and the descriptions reinforce the boundaries.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: list_attachments, add_attachment, delete_attachment, download_attachment. The only minor variation is singular versus plural attachment, but it reads naturally and does not cause confusion.

Tool Count5/5

Four tools is exactly the right scope for an attachment management server: list, add, delete, and download. There is no redundancy or unnecessary bloat.

Completeness5/5

The tool set covers the full actionable lifecycle for work item attachments: enumerate, add, remove the link, and retrieve the file. Update is not applicable since attachments are immutable, so there are no meaningful gaps.

Maintenance

ActivityMaintained
ResponsivenessNo issues