Skip to main content
Glama
Vergil333

JSM Assets MCP Server

by Vergil333

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DEBUGNoEnable debug logging by setting to 'true'.
NODE_ENVNoThe environment mode, e.g., 'development'.
JSM_BASE_URLYesThe base URL for the JSM Assets API.https://api.atlassian.com/jsm/assets/workspace
JSM_AUTH_TOKENYesJSM Authentication token. Use Basic Authentication with a pre-encoded token in the format: 'Basic email:api_token' (Base64 encoded).
JSM_WORKSPACE_IDYesYour Jira Service Management Assets workspace ID.

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
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_assets_aqlA

Search JSM Assets using AQL (Assets Query Language). Supports complex queries with filters and robust automatic pagination.

get_object_schemasB

List all object schemas available in the JSM Assets workspace. Schemas contain related object types.

get_object_typesC

Get all object types for a specific schema. Object types define the structure and properties of assets.

get_object_attributesC

Get all attributes (fields) for a specific object type. Attributes define what data can be stored for objects of this type.

search_child_objectsA

Search for child objects of a specific parent object type, with optional filters and robust automatic pagination.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 5 tools

Disambiguation4/5

The tools are mostly distinct, with clear separation between metadata retrieval (get_object_attributes, get_object_schemas, get_object_types) and search operations (search_assets_aql, search_child_objects). However, the two search tools could potentially be confused, as both handle search with filters and pagination, though they target different scopes (general AQL vs. child-specific).

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with clear verb_noun structure (e.g., get_object_attributes, search_assets_aql). The naming is predictable and readable throughout the set, with no deviations in style or convention.

Tool Count4/5

With 5 tools, the count is reasonable for a JSM Assets server, covering core metadata and search operations. It is slightly lean but well-scoped, as each tool serves a distinct purpose without obvious bloat or redundancy, though it might benefit from additional CRUD tools for completeness.

Completeness3/5

The toolset provides good read/search capabilities for JSM Assets, including metadata exploration and asset queries. However, there are notable gaps in CRUD operations—no tools for creating, updating, or deleting assets or schemas, which limits agents to read-only workflows and may cause failures in scenarios requiring modifications.

Maintenance

ActivityInactive
ResponsivenessNo issues