Skip to content

Orbit

Orbit exposes GitLab.com’s experimental Knowledge Graph API through five read-only MCP tools. It is available only when the server connects to https://gitlab.com and the Enterprise/Premium catalog is enabled with GITLAB_ENTERPRISE=true or --enterprise.

RequirementValue
GitLab hosthttps://gitlab.com
CatalogEnterprise/Premium
Meta-tool modegitlab_orbit with five actions
Individual modeFive gitlab_orbit_* tools
Write behaviorRead-only

Self-managed GitLab instances do not register Orbit tools, even when the Enterprise/Premium catalog is enabled.

ActionIndividual toolPurpose
statusgitlab_orbit_statusCheck Orbit service health and component status
schemagitlab_orbit_schemaInspect the graph ontology and optional expanded node definitions
toolsgitlab_orbit_toolsDiscover the live Orbit query manifest
querygitlab_orbit_queryExecute a read-only Knowledge Graph query object
graph_statusgitlab_orbit_graph_statusInspect indexing status for a namespace, project, or full path
  1. Call gitlab_orbit with action: "status" to confirm the service is available.
  2. Call action: "schema" to inspect graph domains, nodes, and relationships.
  3. Call action: "tools" before action: "query" to obtain the live query schema served by GitLab.com.
  4. Pass a JSON query object to action: "query" with response_format set to raw or llm.
{
"tool": "gitlab_orbit",
"arguments": {
"action": "graph_status",
"params": {
"project_id": 278964,
"response_format": "llm"
}
}
}

In meta-tool mode, action parameter schemas are available through MCP resources:

ResourcePurpose
gitlab://schema/meta/gitlab_orbit/statusParameters for service health checks
gitlab://schema/meta/gitlab_orbit/schemaParameters for ontology inspection
gitlab://schema/meta/gitlab_orbit/toolsParameters for query manifest discovery
gitlab://schema/meta/gitlab_orbit/queryParameters for Knowledge Graph queries
gitlab://schema/meta/gitlab_orbit/graph_statusParameters for indexing status checks

These resources remain available regardless of META_PARAM_SCHEMA mode.