Skip to main content
Glama

profile

list_projects

List portfolio projects. Optional filters combine with AND and match case-insensitively; unknown values yield an empty list. Tags are Title Case display strings like "AI Workflow", "Next.js"; matching is case-insensitive so "web3" matches "Web3".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagNo
lensNo

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses important behaviors: filters combine with AND, are case-insensitive, and unknown values yield an empty list. It also clarifies tag format and matching. This is strong transparency for a read-only list operation, though it does not mention pagination or sort order.

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 concise, with two sentences that first state the core purpose and filter behavior, then provide tag-specific details. Every sentence adds value, and it is well-structured for quick reading.

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?

For a tool with only two optional parameters and no output schema, the description covers key aspects: scope ('portfolio projects'), filter semantics, edge case behavior, and tag format. It is complete enough for agents to use effectively, though it omits details about the returned fields or pagination, which are not critical.

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 schema provides no descriptions (0% coverage). The description adds meaning for filters overall and specifically elaborates on the 'tag' parameter with format examples and case-insensitivity. However, the 'lens' parameter is not explained beyond its enum values, leaving a partial compensation. The filter behavior applies to both parameters, giving some semantics.

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 the tool's function with a specific verb+resource: 'List portfolio projects.' This distinguishes it from sibling tools like get_availability and get_project, which imply different operations (e.g., fetching a single project or checking availability).

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

Usage Guidelines3/5

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

The description implies when to use the tool (to list portfolio projects) and describes optional filters and their behavior, but it does not explicitly mention alternatives or when not to use it. For example, it does not say 'use get_project for a single project,' so guidance is present but not fully explicit.

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

A4/5.0
Disambiguation5/5

Each tool targets a distinct resource or retrieval purpose: availability, profile summary, single project, proof, project list, and FAQ search. Although get_profile_summary includes availability, its purpose as a consolidated summary is clearly separated from get_availability's focused availability/work-scope lookup.

Naming Consistency5/5

All tool names follow a consistent snake_case verb_noun pattern (get_*, list_*, search_*). This makes the tool set predictable and easy to navigate.

Tool Count5/5

Six tools is well scoped for a portfolio/profile server. Each tool covers a distinct read-only information need without unnecessary duplication or bloat.

Completeness5/5

The set covers the apparent domain comprehensively: profile entity, availability, project listing/detail, proof retrieval, and FAQ search. No obvious dead ends or missing operations for a public read-only profile service.

Resources