Retrieve dictionary details

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/demo/doc/gitlab/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Gitlab (Unofficial) MCP server": {
  "url": "https://bump.sh/demo/doc/gitlab/mcp"
}
Close
GET /admin/databases/{database_name}/dictionary/tables/{table_name}

Retrieve dictionary details

Path parameters

  • database_name string Required

    The database name

    Values are main or ci.

  • table_name string Required

    The table name

Responses

  • 200 application/json

    Retrieve dictionary details

    Hide response attributes Show response attributes object
    • table_name string
    • feature_categories array[string]
  • 401

    401 Unauthorized

  • 403

    403 Forbidden

  • 404

    404 Not found

GET /admin/databases/{database_name}/dictionary/tables/{table_name}
curl \
 --request GET 'https://www.gitlab.com/api/v4/admin/databases/{database_name}/dictionary/tables/{table_name}' \
 --header "Private-Token: $API_KEY"
Response examples (200)
{
  "table_name": "users",
  "feature_categories": [
    "database"
  ]
}