Skip to main content
Glama
franckyo

franckelson-mcp

by franckyo

Project detail

get_project
Read-only

Retrieve complete details for any listed project, covering its purpose, build process, and significance. Provides in-depth context to understand a project's background and impact.

Instructions

Full detail on one project: what it is, how it was built, and why it matters.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesProject id. One of: evm-recon-mcp, fuzzing-harnesses, assert-oracle, threshold-ecdsa

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4/5.0
Behavior3/5

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

Annotations declare readOnlyHint=true, so the agent knows this is a safe read operation. The description additionally describes the kind of content returned, which is useful context, but it does not go beyond that into edge-case behavior such as failure modes or authentication requirements.

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?

A single, well-structured sentence with no filler. The main purpose and scope appear first, and every phrase adds meaningful content.

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 simple get-by-id tool with a fully documented parameter and a read-only annotation, the description is nearly complete. It indicates the depth of information returned, though it does not enumerate the response structure; given the lack of an output schema, slightly more explicit return details could make it fully complete.

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 provides 100% coverage of the single parameter, including the project id and its allowed values. The description adds no new parameter-level meaning, 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 names a specific resource and operation: 'Full detail on one project' and clarifies the kind of detail ('what it is, how it was built, and why it matters'). This clearly distinguishes it from list_projects, which would return multiple projects, and from profile/services siblings.

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's 'on one project' makes the scope clear and implies this is the tool for a single project's details rather than a collection. It does not explicitly state alternatives or exclusions, but the context is sufficiently clear.

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