Skip to main content
Glama

Save Project

save_project

Add or update a portfolio project (upsert). Omit id to create (title and shortDescription are required); pass an id (from get_profile) to update, changing only the fields you send. Projects are the #1 differentiator for junior/mid developers. Help the user recognize work they might not think of: side projects, open-source contributions, hackathon entries, internal tools, time-saving scripts, blogs, personal apps. Check get_profile first to avoid duplicates; don't fabricate or embellish.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoPresent: update this project (only the fields you pass change). Omit: create a new one (title and shortDescription are required to create).
roleNoYour role in the project
titleNoProject title
demoUrlNoLive demo URL
endDateNoEnd date (ISO 8601)
repoUrlNoRepository URL
isRemoteNoWhether this was remote work (default false on create)
isCurrentNoWhether this is an ongoing project (default false on create)
startDateNoStart date (ISO 8601)
descriptionNoFull project description
isOpenSourceNoWhether this is open source (default false on create)
technologiesNoTechnologies used
shortDescriptionNoA one-line summary of the project

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

With annotations all false, the description adds critical behavioral context: upsert semantics, required fields on create, partial-only updates, and a precondition to check get_profile. It also includes an anti-hallucination instruction ('don't fabricate or embellish'), which is beyond the annotations.

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

Conciseness4/5

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

The description is informative without being bloated. The first sentence captures core behavior, the second provides strategic guidance, and the third gives a safety instruction. Each sentence adds value, though the motivational sentence could be considered slightly extraneous for tool invocation.

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 13-parameter tool with no output schema, the description covers the essential operational details: upsert behavior, required fields, partial update, and duplicate avoidance. It could mention response format or error cases, but those are less critical given the schema's full parameter coverage.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds meaning beyond the schema by clarifying that title and shortDescription are required for create (though the schema lists them as optional), and that updates only change passed fields. This is significant for correct invocation.

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 a specific verb and resource ('Add or update a portfolio project (upsert)') and distinguishes create from update behavior with explicit references to id and get_profile. This clearly differentiates it from sibling tools like save_work_experience or update_profile.

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?

It provides explicit usage context: omit id to create, pass id from get_profile to update, and check get_profile first to avoid duplicates. It does not name alternative tools explicitly or state when not to use it, but the create/update distinction and prerequisite are clear.

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.

Resources