Skip to main content
Glama

Bo Kendell — Portfolio

List projects

list_projects
Read-onlyIdempotent

Return every portfolio project (title, brief description, lifecycle, tech stack). Use get_project for the full body + screenshots.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
lifecycleNoFilter by lifecycle. Omit to return all.

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds the 'every' scope and a summary of returned fields, which is useful, but it does not disclose ordering, pagination, or any other behavioral traits beyond what annotations already indicate.

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?

Two sentences with no filler. The main purpose and returned content are front-loaded, and the alternative tool is mentioned in a short, actionable second sentence.

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

Completeness5/5

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

For a simple list tool with one optional filtered parameter, strong safety annotations, and no nested objects, the description is complete. It tells the agent what is returned, the scope, and when to switch to the sibling tool, so nothing essential is missing.

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?

Schema description coverage is 100%, and the only parameter, lifecycle, already has a clear enum and description in the schema. The tool description mentions lifecycle as a field but does not add any meaning about the filter parameter beyond what the schema already provides, so the baseline of 3 applies.

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 states a specific verb ('Return') and resource ('every portfolio project') and enumerates the returned fields (title, brief description, lifecycle, tech stack). It also explicitly distinguishes this tool from get_project, so an agent can tell them apart without opening schemas.

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

Usage Guidelines5/5

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

It clearly identifies get_project as the alternative for accessing full body content and screenshots. This directly routes the agent to the correct sibling based on the desired level of detail, which is exactly the kind of when-to-use guidance needed.

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.9/5.0
Disambiguation4/5

Most tools target clearly distinct resources: profile, experience, projects, posts, tech stack, and activity. Minor confusion exists because get_experience overlaps somewhat with projects, and the get_post/list_posts pair is muddled by list_posts directing callers to get_post for the 'full body' when get_post actually returns only metadata.

Naming Consistency5/5

The get_/list_ convention is applied consistently, with singular get_ for individual resources and plural list_ for collections. This creates a predictable, easy-to-navigate pattern across all eight tools.

Tool Count5/5

Eight tools is well-scoped for a portfolio server. Each tool covers a meaningful section of a personal site without unnecessary fragmentation or bloat.

Completeness4/5

The server covers the main portfolio surface well: profile, experience, projects, tech stack, posts, and GitHub/LeetCode activity. The main gap is that get_post only returns metadata and the post body is not available through the MCP server, despite list_posts implying it is.