Skip to main content
Glama

Gitlab List Projects

gitlab_list_projects
Read-onlyIdempotent

List all accessible GitLab projects. Returns project ID, name, path, description, star count, and URL. Use gitlab_get_project to fetch detailed info.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ownedNoIf true, only return projects owned by the user (default: false)
searchNoSearch projects by name
_apiKeyYesGitLab personal access token
per_pageNoNumber of projects to return (default 20, max 100)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectsYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds value by listing the return fields (ID, name, path, description, star count, URL), giving the agent an expectation of the response shape beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences long, front-loaded with the main purpose, includes return details, and directly points to the alternative tool. Every sentence is useful and there is zero redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and the description covers its core purpose, return values, and relationship to a sibling. An output schema exists, so detailed return types are not needed in the description. However, it could mention pagination behavior or that 'all accessible' might imply a long list, but the schema's per_page parameter handles that.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage with all four parameters clearly documented. The description adds no additional parameter-level meaning beyond what the schema already provides, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List all accessible GitLab projects' which is a specific verb+resource combo. It also distinguishes from the sibling tool gitlab_get_project by noting that detailed info is available there, making it easy to identify this as the listing tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly names an alternative: 'Use gitlab_get_project to fetch detailed info.' This provides clear guidance on when to use this tool vs. a close sibling, though it does not mention exclusions for other siblings like gitlab_list_issues or gitlab_list_mrs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation2/5

Multiple tools have overlapping purposes, notably ask_pipeworx, ask_pipeworx_beta, and ask_pipeworx_grounded which are near-identical in function. The polymarket_* family also has several members with closely related scopes, and the large number of data-query tools makes it hard to choose the right one without careful reading.

Naming Consistency3/5

All names use snake_case, but the pattern is inconsistent: some are verb-first (list_subscriptions, validate_claim), others are noun-first (entity_profile, bet_research), and proper-noun prefixes like pipeworx_ and polymarket_ are used liberally. The gitlab_* tools follow a clear verb_noun pattern, but the rest of the set is mixed.

Tool Count2/5

With 36 tools, the server is overloaded, especially given that only 5 are GitLab-related while the rest are a sprawling data-access toolkit. Many tools could be consolidated (e.g., the ask_pipeworx variants), and the count exceeds what is reasonable for a focused GitLab server.

Completeness2/5

For a server named Gitlab, the coverage is severely incomplete: only list/get operations exist for projects, issues, and MRs, with no create, update, or delete capabilities. The broader data tools are more complete, but the nominal purpose of the server is clearly not fulfilled.