Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
JIRA_URLNoJira instance URL
DCI_LOGINNoDCI user login
DCI_CS_URLNoDCI control server URLhttps://api.distributed-ci.io
JIRA_EMAILNoJira account email
DCI_PASSWORDNoDCI user password
GITHUB_TOKENNoGitHub personal access token
DCI_CLIENT_IDNoDCI client ID in format <client_type>/<client_id>
OFFLINE_TOKENNoRed Hat API offline token for support cases
DCI_API_SECRETNoDCI API secret
JIRA_API_TOKENNoJira API token
GOOGLE_TOKEN_PATHNoPath to Google token JSON file
DATE_TOOLS_ENABLEDNoEnable date tools (true/false)true
JIRA_WRITE_ENABLEDNoEnable Jira write operations (true/false)
GOOGLE_CREDENTIALS_PATHNoPath to Google OAuth2 credentials JSON file

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tasks
{
  "list": {},
  "cancel": {},
  "requests": {
    "tools": {
      "call": {}
    },
    "prompts": {
      "get": {}
    },
    "resources": {
      "read": {}
    }
  }
}
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
todayA

Get today's date.

Returns: JSON string with today's date in this format: "YYYY-MM-DD"

nowA

Get current date and time.

Returns: JSON string with current date and time in this format: "2025-09-12T21:47:02.908617"

query_dci_componentsA

Lookup DCI components with an advanced query language.

Common queries:

  • List OCP/OpenShift components: eq(type,ocp) (filter by type, NOT by name)

  • List all components: ilike(name,%)

  • List GA OCP components: and(eq(type,ocp),contains(tags,build:ga))

The query language is based on this DSL:

eq(<field>,<value>) to lookup resources with a <field> having the value <value>.
IMPORTANT: Values must NOT be quoted. Use eq(type,ocp) not eq(type,'ocp').

You can use the comparison functions gt (greater than), ge (greater or equal),
lt (less than) or le (less or equal) using the same syntax as eq: <op>(<field>,<value>).

like(<field>,<value with percent>) and ilike(<field>,<value with percent>)
to lookup a field with a SQL glob like way. For example, to get the components
with a specific name pattern, use like(name,ocp-%).

contains(<field>,<value1>,...) and not_contains(<field>,<value1>,...)
to lookup elements in an array. This is useful mainly for tags.

and(<op1>(...),<op2>(...)), or(<op1>(...),<op2>(...)) and not(<op>) allow
to build nested boolean queries.

null(<field>) to lookup resources with a field having a NULL value.

Here are all the fields of a DCI component that can be used in the query:

- id: unique identifier

- name: name of the component

- type: type of the component. Use `eq(type,ocp)` to query OpenShift components (do NOT use name for this).

- team_id: The ID of the team that owns the component. Use the `query_dci_teams` tool to get it.

- released_at: The release timestamp. Use `today` tool to compute relative dates.

- topic_id: The ID of the topic associated with the component. Use the `query_dci_topics` tool to get it.

- state: The current state of the component (active, inactive, etc.).

- url: The URL of the component, if applicable.

- tags: list of tags associated with the component. For components of type ocp, it has a build status tag like `build:dev` (also called engineering candidate or ec), `build:candidate` (also called release candidate or rc), `build:ga` or `build:nightly`.

Counting Components: To get the total count of components matching a query, set limit=1 and read the count field in the _meta section of the response.

Example for counting components by type:

{
  "query": "eq(type,ocp)",
  "limit": 1,
  "offset": 0,
  "fields": []
}

This will return a response like:

{
  "components": [],
  "_meta": {"count": 150},
  ...
}

The total count is 150 components.

Returns: JSON string with list of components and pagination info

search_dci_jobsA

Search DCI (Distributed CI) job documents from Elasticsearch.

DCI jobs represent CI/CD pipeline executions that test software components (like OpenShift, storage solutions, etc.) across different environments.

⚠️ COMMON MISTAKES TO AVOID

1. ALWAYS wrap conditions in parentheses - CRITICAL RULE

Each condition MUST be wrapped in parentheses. When combining conditions with AND/OR, add EXTRA parentheses to group them.

Single condition:

  • status='failure' → INVALID (no parentheses)

  • (status='failure') → VALID (wrapped)

Two conditions (AND/OR):

  • (status='failure') and (tags in ['daily']) → INVALID (missing outer parentheses)

  • ((status='failure') and (tags in ['daily'])) → VALID (each condition + outer grouping)

Three or more conditions:

  • ((status='failure') and (created_at>='2024-01-01') and (duration>=1000)) → MAY FAIL

  • (((status='failure') and (created_at>='2024-01-01')) and (duration>=1000)) → VALID (proper grouping)

  • (((tests.testsuites.testcases.action='failure') and (nodes.hardware.cpu_vendor='Intel')) and (created_at>='2024-01-01')) → VALID (complex nested fields)

Rule of thumb: Count your conditions. If N conditions, you need N pairs of parentheses PLUS (N-1) grouping pairs.

  • 1 condition = 1 pair: (field='value')

  • 2 conditions = 3 pairs: ((cond1) and (cond2))

  • 3 conditions = 5 pairs: (((cond1) and (cond2)) and (cond3))

2. NEVER use = for dates

  • created_at='2024-01-15' → INVALID

  • (created_at>='2024-01-15') → VALID for "since Jan 15"

  • ((created_at>='2024-01-15') and (created_at<='2024-01-20')) → VALID for period

3. Use in for lists, not =

  • status='failure' or status='error' → Works but verbose

  • (status in ['failure', 'error']) → BETTER

  • tags='daily' → INVALID

  • (tags in ['daily']) → VALID

4. Multiple components = separate conditions with AND

  • (components.type in ['ocp', 'storage']) → Finds jobs with OCP OR storage

  • (((components.type='ocp') and (components.version='4.19.0')) and ((components.type='storage') and (components.name='ceph'))) → Finds jobs with OCP 4.19.0 AND Ceph storage

5. Specify necessary fields

  • fields=[] → No data returned (only metadata)

  • fields=['id', 'status', 'created_at', 'components.name'] → Essential data

  • 💡 Use dot notation for nested fields: components.name, tests.testsuites.testcases.action

6. Large results = save to file

  • limit=200 without __save_to_file → Context overload

  • limit=200, __save_to_file='/tmp/jobs.json' → Saves context

Query Language (DSL)

Basic Operators:

  • field='value' - exact match

  • field!=value - not equal

  • field>value, field>=value, field<value, field<=value - comparisons

  • field=~'regex' - regex match

List Operators:

  • field in ['value1', 'value2'] - value in list

  • field not_in ['value1', 'value2'] - value not in list

Logical Operators:

  • and, or - combine criteria

  • () - group criteria with parentheses (ALWAYS REQUIRED)

Simple Examples (1-2 conditions):

  • Single condition: (remoteci.name='telco-cilab-bos2')

  • Failing daily jobs: ((tags in ['daily']) and (status in ['failure', 'error']))

  • OpenShift 4.19 jobs: ((components.type='ocp') and (components.version='4.19.0'))

  • Jobs with workarounds: ((keys_values.key='workarounds') and (keys_values.value>0))

  • Date range: ((created_at>='2024-09-16') and (created_at<='2025-09-20'))

Complex Examples (3+ conditions - note the extra grouping parentheses):

  • Success jobs in date range: (((status='success') and (created_at>='2024-01-01')) and (duration>=1000))

  • Failed test with specific firmware: (((tests.testsuites.testcases.name=~'PTP.*') and (tests.testsuites.testcases.action='failure')) and (nodes.hardware.network_interfaces.firmware_version='2.50'))

  • Multiple criteria: (((tags in ['daily']) and (status='failure')) and (created_at>='2024-01-01'))

  • Nested fields combo: (((components.type='ocp') and (components.version=~'4.1?.*')) and (team.name='my-team'))

Available Fields

Basic Job Information:

  • id: unique job identifier

  • name: job name (just a label, don't over-interpret)

  • status: current state (new, running, success, failure, error, killed)

  • state: internal job state

  • status_reason: explanation for failed jobs (free text)

  • comment: free text, may contain JIRA ticket numbers

  • configuration: job configuration (free text)

  • duration: execution time in seconds

Timestamps:

  • created_at: job creation time

  • updated_at: last update time

  • Use today or now tools for relative dates

  • Use >, <, >=, <= operators (NEVER use = for dates)

  • Format: 2025-09-12 or 2025-09-12T21:47:02.908617

  • For a period: ((created_at>='2024-09-16') and (created_at<='2025-09-20'))

Components & Software:

  • components.(type, name, version, tags): list of software components tested

  • Component types: ocp (OpenShift), storage, cnf, hwcert

  • Build tags: build:ga (GA release), build:candidate (RC), build:dev (EC), build:nightly

  • Example: ((components.type='ocp') and (components.version='4.19.0'))

  • Multiple components: (((components.type='ocp') and (components.version='4.19.0')) and ((components.type='storage') and (components.name='ceph')))

Infrastructure:

  • remoteci.(name, id): lab/environment where job ran (prefer remoteci.name)

  • product.(name, id): product being tested (prefer product.name)

  • team.(name, id): team owning the job (prefer team.name)

  • topic.(name, id): topic/category (prefer topic.name)

Pipeline Information:

  • pipeline.(name, id): pipeline details

  • previous_job_id: previous job in same pipeline

Tags & Classification:

  • tags: list of tags for categorization (ALWAYS use in operator)

  • Common tags:

  • daily - daily jobs

  • agent:openshift - OpenShift/OCP install jobs

  • agent:openshift-app - OpenShift/OCP application/workload jobs

  • connected - connected mode jobs

  • disconnected - disconnected mode jobs

  • use-dci-container - containerized jobs

  • install_type:ipi - IPI install

  • install_type:abi - Agent-Based Installer

  • install_type:acm - ACM install

  • install_type:sno - Single Node OpenShift

  • install_type:upi - UPI install

Files & Artifacts:

  • files.(id, name, size, state, mime): job artifacts

  • Use download_dci_file tool to download files

  • Example: Get file IDs with fields=['id', 'files.id', 'files.name'], then download

Metrics & Measurements:

  • keys_values.(key, value): job metrics

  • Common metrics: install_time (seconds), workarounds (count), test_count, failure_count

  • Query: ((keys_values.key='workarounds') and (keys_values.value>0))

Node Information:

  • nodes: list of nodes involved in the job

  • nodes.(node, role): hostname and role (sno, master, worker, control-plane)

  • nodes.kernel.(version, params): kernel details

  • nodes.hardware.system_(vendor, model, family, sku): system info

  • nodes.hardware.cpu_(model, vendor, sockets, total_cores, total_threads, frequency_mhz): CPU info

  • nodes.hardware.memory_(total_gb, dimm_count): memory info

  • nodes.hardware.bios_(vendor, version, date, type): BIOS info

  • nodes.hardware.(network_interfaces, pci_accelerators, pci_network_controllers, storage_devices): device lists

  • Example: ((nodes.role='sno') and (nodes.hardware.cpu_vendor='Intel'))

Test Results (3-level nested structure):

  • tests: complex nested structure with test results

  • Structure:

  • Level 1: tests.(file_id, name) - test file/suite files

  • Level 2: tests.testsuites.(name, testcases) - test suites

  • Level 3: tests.testsuites.testcases.(name, action, classname, time, type, properties, message, stdout, stderr) - individual test cases

  • Actions: run (success), skip (skipped), error (error), failure (failed)

  • Types: junit, robot

  • Examples:

  • All jobs with at least 1 failed test: (tests.testsuites.testcases.action='failure')

  • Failed tests in specific suite file: ((tests.name='test_suite.xml') and (tests.testsuites.testcases.action='failure'))

  • Specific test by name: ((tests.testsuites.testcases.name='test_install') and (tests.testsuites.testcases.action='failure'))

  • Test matching pattern: ((tests.testsuites.testcases.name=~'.*43336-V-BR.*') and (tests.testsuites.testcases.action='success'))

URLs:

  • url: GitHub PR or Gerrit change URL

Other:

  • jobstates: internal job state information

  • results: job results data

  • user_agent: client information

Common Use Cases

Find Failing Jobs: (status in ['failure', 'error']) Daily Jobs: (tags in ['daily']) OpenShift Jobs: (product.name='OpenShift') OpenShift Install Jobs: (tags in ['agent:openshift']) OpenShift Application/Workload Jobs: (tags in ['agent:openshift-app']) Jobs with Specific Component Version: ((components.type='ocp') and (components.version='4.19.0')) Jobs with Multiple Components: (((components.type='ocp') and (components.version='4.19.0')) and ((components.type='storage') and (components.name='ceph'))) Jobs by Date Range: ((created_at>='2024-09-16') and (created_at<='2025-09-16')) Jobs with Specific Metrics: ((keys_values.key='install_time') and (keys_values.value>3600)) Compare Jobs: Look for jobs with same name, topic, remoteci, configuration, and url

ElasticSearch Aggregations (for Statistics & Analysis)

When to use aggregations (aggs parameter):

  • User asks for counts, statistics, trends, distributions, or averages

  • Examples: "How many jobs failed?", "Show daily trend", "Average duration", "Count by status"

  • Aggregations compute stats server-side (much faster than fetching all documents)

  • Use limit=1 with fields=['id'] for aggregations to minimize bandwidth (limit=0 is auto-set to 1)

Aggregation syntax (ElasticSearch 7.16): The aggs parameter takes a dict with aggregation definitions: {"<agg_name>": {"<agg_type>": {...}}}

Simple field aggregations (keyword, date, numeric fields):

  • Terms (group by): {"by_status": {"terms": {"field": "status", "size": 10}}}

  • Date histogram: {"daily": {"date_histogram": {"field": "created_at", "calendar_interval": "day"}}}

  • Stats (avg, min, max, sum): {"duration_stats": {"stats": {"field": "duration"}}}

  • Count: {"total": {"value_count": {"field": "id"}}}

Nested field aggregations (components, tests, team, remoteci, pipeline, topic, files, keys_values, nodes): Nested fields require special nested aggregation syntax:

  • Step 1: Wrap in nested aggregation with path

  • Step 2: Add filter or terms aggregation inside

  • Example for components.version:

    {
      "components_agg": {
        "nested": {"path": "components"},
        "aggs": {
          "ocp_only": {
            "filter": {"term": {"components.type": "ocp"}},
            "aggs": {
              "versions": {"terms": {"field": "components.version", "size": 50}}
            }
          }
        }
      }
    }

Triple-nested: tests.testsuites.testcases (test results): Test data requires three levels of nested aggregations:

{
  "tests_agg": {
    "nested": {"path": "tests"},
    "aggs": {
      "testsuites_agg": {
        "nested": {"path": "tests.testsuites"},
        "aggs": {
          "testcases_agg": {
            "nested": {"path": "tests.testsuites.testcases"},
            "aggs": {
              "by_action": {"terms": {"field": "tests.testsuites.testcases.action"}}
            }
          }
        }
      }
    }
  }
}

Available aggregation fields by type:

  • Simple fields (direct aggregation): status, tags, team_id, remoteci_id, pipeline_id, topic_id, product_id, created_at, updated_at, duration, state, name

  • Nested fields (need nested agg):

    • components: type, name, version, tags, canonical_project_name

    • tests → testsuites → testcases: name, action (success/failure/error/skip), classname, time, type

    • team: id, name, state, external, has_pre_release_access

    • remoteci: id, name, state, public

    • pipeline: id, name, state

    • topic: id, name, component_types, export_control

    • files: id, name, mime, size, state

    • keys_values: key, value

    • nodes → hardware: (nested within nested)

    • nodes → kernel: (nested within nested)

Common aggregation patterns:

  • "How many jobs by status?" → {"by_status": {"terms": {"field": "status"}}}

  • "Daily job count last week" → {"daily": {"date_histogram": {"field": "created_at", "calendar_interval": "day"}}}

  • "Average job duration" → {"avg_duration": {"avg": {"field": "duration"}}}

  • "Count by team" → {"by_team": {"terms": {"field": "team_id"}}}

  • "OCP version distribution" → Use nested aggregation on components (see example above)

  • "Test failure rate" → Use triple-nested aggregation on tests.testsuites.testcases (see example above)

Combining aggregations with sub-aggregations: You can nest aggregations for multi-dimensional analysis:

{
  "daily": {
    "date_histogram": {"field": "created_at", "calendar_interval": "day"},
    "aggs": {
      "by_status": {"terms": {"field": "status"}},
      "avg_duration": {"avg": {"field": "duration"}}
    }
  }
}

Response format with aggregations: When aggregations are provided, the response includes an "aggregations" field with the computed statistics. The "hits" field will contain 1 job document (auto-set when aggs provided), or more if limit is explicitly set higher.

Function Parameters

query (required): Query DSL string - see examples above

fields (optional, default: []): List of fields to return

  • []: NO data returned (only metadata: count, total)

  • ['id', 'status']: only these fields

  • Use dot notation for nested fields: components.name, tests.testsuites.testcases.action

  • Recommended minimum: ['id', 'status', 'created_at']

  • For components: ['components.type', 'components.name', 'components.version']

  • For tests: ['tests.testsuites.testcases.name', 'tests.testsuites.testcases.action']

limit (optional, default: 20, max: 200): Page size — maximum job documents in hits for this call. Not repeated in the JSON response; you must remember what you passed. If limit > 50, use __save_to_file.

offset (optional, default: 0): Number of matching jobs to skip (same sort as sort). Page 1: offset=0. Next page: offset = previous offset + limit. Not repeated in the JSON response.

sort (optional, default: '-created_at'): Sort criteria

  • -created_at: newest to oldest (default)

  • created_at: oldest to newest

  • -duration: longest to shortest

  • duration: shortest to longest

  • ⚠️ WARNING: Only date and numeric fields are sortable (created_at, updated_at, duration)

  • Text fields like name or status are NOT sortable and will return empty results

__save_to_file (optional, available on ALL tools): Path to save complete result

  • Use systematically if: limit > 50, many fields, multiple pagination, bulk analysis

  • Example: __save_to_file='/tmp/dci/jobs.json'

Field Filtering

The fields parameter filters which fields are returned in the response:

  • If fields is empty [], no job data is returned (only metadata)

  • If fields contains field names, only those fields are returned

  • Use dot notation for nested fields: components.name, topic.id, tests.testsuites.testcases.name

  • Common field combinations:

  • Basic info: ['id', 'name', 'status', 'created_at']

  • Component details: ['components.name', 'components.version', 'components.tags']

  • Test results: ['tests.testsuites.testcases.name', 'tests.testsuites.testcases.action']

Response format and pagination

The return value is a JSON string. Parse it once; the top-level object has at least:

  • hits: array of job objects for this page (up to limit items). Shape matches your fields (nested objects only where you requested them). If fields=[], this is always [] — you still get total for counting.

  • total: hit metadata for the query. Either a non-negative integer (exact match count) or an Elasticsearch-style object with:

  • value (int): number of matching jobs, or a lower bound when relation is gte (see below).

  • relation (string, when present): eq means value is the exact total. gte means there are at least value matches; the true count may be higher (Elasticsearch did not track the full total). If relation is omitted, treat value as exact unless your deployment documents otherwise.

Let N = total if total is an int, else N = total["value"]. Let rel be None if total is an int, else total.get("relation").

There is no limit or offset key in the response; pagination is driven only by the tool arguments on the next call.

How to paginate: Keep the same query, sort, and fields. Start with offset=0. After each page, advance offset by limit while there may be more rows:

  • If rel == "gte": the only reliable stop rule is len(hits) < limit (no more full pages). Do not assume N is the full count.

  • Otherwise (rel is eq, None, or total is an int): stop when len(hits) < limit or offset + len(hits) >= N.

Quick count: Exact total only when total is an int or relation == "eq" (or relation absent and your stack guarantees exact value). If relation == "gte", value is a lower bound only — you must paginate through all pages (or accept an approximate count) for a true total.

Example (illustrative; field names depend on fields):

{
  "hits": [
    {
      "id": "job-abc-123",
      "status": "failure",
      "created_at": "2026-03-30T10:00:00",
      "components": [
        {
          "type": "ocp",
          "name": "OpenShift",
          "version": "4.19.0",
          "tags": ["build:ga"]
        }
      ]
    }
  ],
  "total": {"value": 150, "relation": "eq"}
}
download_dci_fileB

Download a DCI file to a local path.

Returns: JSON string with download status

query_dci_teamsA

Lookup DCI teams with an advanced query language.

Listing all teams: To list all teams, use ilike(name,%) as the query.

The query language is based on this DSL:

eq(<field>,<value>) to lookup resources with a <field> having the value <value>.
IMPORTANT: Values must NOT be quoted. Use eq(name,DCI) not eq(name,'DCI').

You can use the comparison functions gt (greater than), ge (greater or equal),
lt (less than) or le (less or equal) using the same syntax as eq: <op>(<field>,<value>).

like(<field>,<value with percent>) and ilike(<field>,<value with percent>)
to lookup a field with a SQL glob with at least one % character. For example, to get the teams
with a specific name pattern, use like(name,%Name%).

contains(<field>,<value1>,...) and not_contains(<field>,<value1>,...)
to lookup elements in an array. This is useful mainly for tags.

and(<op1>(...),<op2>(...)), or(<op1>(...),<op2>(...)) and not(<op>) allow
to build nested boolean queries.

null(<field>) to lookup resources with a field having a NULL value.

Here are all the fields of a DCI team that can be used in the query:

- id: unique identifier

- name: name of the team

- created_at: The creation timestamp. Use `today` tool to compute relative dates.

- updated_at: The last update timestamp. Use `today` tool to compute relative dates.

- tags: list of tags associated with the team.

Listing all teams: To list all teams, use ilike(name,%) as the query.

Counting Teams: To get the total count of teams matching a query, set limit=1 and read the count field in the _meta section of the response.

Example for counting teams by name:

{
  "query": "eq(name,DCI)",
  "limit": 1,
  "offset": 0,
  "fields": []
}

This will return a response like:

{
  "teams": [],
  "_meta": {"count": 10},
  ...
}

The total count is 10 teams.

Returns: JSON string with list of teams and pagination info

query_dci_remotecisA

Lookup DCI remotecis with an advanced query language.

Listing all remotecis: To list all remotecis, use ilike(name,%) as the query.

The query language is based on this DSL:

eq(<field>,<value>) to lookup resources with a <field> having the value <value>.
IMPORTANT: Values must NOT be quoted. Use eq(name,dallas) not eq(name,'dallas').

You can use the comparison functions gt (greater than), ge (greater or equal),
lt (less than) or le (less or equal) using the same syntax as eq: <op>(<field>,<value>).

like(<field>,<value with percent>) and ilike(<field>,<value with percent>)
to lookup a field with a SQL glob like way. For example, to get the remotecis
with a specific name pattern, use like(name,dallas-%).

contains(<field>,<value1>,...) and not_contains(<field>,<value1>,...)
to lookup elements in an array. This is useful mainly for tags.

and(<op1>(...),<op2>(...)), or(<op1>(...),<op2>(...)) and not(<op>) allow
to build nested boolean queries.

null(<field>) to lookup resources with a field having a NULL value.

Here are all the fields of a DCI remoteci that can be used in the query:

- id: unique identifier

- name: name of the remoteci (lab)

- created_at: The creation timestamp. Use `today` tool to compute relative dates.

- updated_at: The last update timestamp. Use `today` tool to compute relative dates.

- tags: list of tags associated with the remoteci.

Listing all remotecis: To list all remotecis, use ilike(name,%) as the query.

Counting Remotecis: To get the total count of remotecis matching a query, set limit=1 and read the count field in the _meta section of the response.

Example for counting remotecis by name:

{
  "query": "eq(name,dallas)",
  "limit": 1,
  "offset": 0,
  "fields": []
}

This will return a response like:

{
  "remotecis": [],
  "_meta": {"count": 2},
  ...
}

The total count is 2 remotecis.

Returns: JSON string with list of remotecis and pagination info

Prompts

Interactive templates invoked by user choice

NameDescription
rcaPrompt for instructions on how to do a Root Cause Analysis (RCA) of a failing DCI job. Always use this prompt when analysing a failing DCI job. Returns: A prompt message with instructions on how to perform RCA of a failing DCI job.
weeklyPrompt for instructions on how to analyze DCI jobs for a week. Returns: A prompt message with instructions on how to analyze DCI jobs for a week.
biweeklyPrompt for instructions on how to analyze DCI jobs for 2 weeks. Returns: A prompt message with instructions on how to analyze DCI jobs for a week.
quarterlyPrompt for instructions on how to analyze DCI jobs for a quarter (3 months). Returns: A prompt message with instructions on how to analyze DCI jobs for a quarter.

Resources

Contextual data attached and managed by the client

NameDescription
get_es_mappingGet the ElasticSearch mapping for DCI jobs index. This mapping describes the structure of job documents in Elasticsearch, including field types and nested relationships. Use this to construct correct aggregation queries. The mapping is in ElasticSearch 7.16 format.

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/redhat-community-ai-tools/dci-mcp-server'

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