Skip to main content
Glama
mumez

smalltalk-interop-mcp-server

by mumez

Search Methods Like

search_methods_like
Read-only

Search Smalltalk method names by matching a pattern, helping you locate relevant methods in your Pharo or Squeak environment.

Instructions

Find methods matching a pattern.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
method_name_queryYesThe pattern to search for in method names

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.3.0

TDQS

C2.9/5.0
Behavior2/5

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

With readOnlyHint=true, annotations already communicate that this is a safe read operation. The description adds little beyond that; it doesn't disclose pattern semantics (substring vs wildcard vs regex), case sensitivity, match limits, or error behavior, which are important for a search tool.

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 a single, front-loaded sentence with no wasted words. It is concise, though so minimal that it omits useful details; still, structural efficiency is high.

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

Completeness3/5

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

For a one-parameter tool with an output schema and read-only annotation, the description is partially adequate. However, the meaning of 'pattern' is unspecified, and there is no guidance on how to formulate method_name_query, leaving a notable gap that could lead to incorrect usage.

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 coverage for method_name_query is 100%, so the schema already documents the parameter. The description adds no additional meaning about pattern format or behavior, so the baseline score of 3 applies.

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

Purpose4/5

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

The description 'Find methods matching a pattern' states a clear verb and resource, and the resource 'methods' distinguishes it from sibling tools like search_classes_like and search_traits_like. However, it doesn't explicitly name or contrast those alternatives, so it stops short of fully differentiating itself.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus siblings or alternatives. There is no mention of context, exclusions, or which pattern syntax to use, so an agent must infer appropriate usage.

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