Skip to main content
Glama
This connector has been deprecated

Superseded listing, not a dead server. This entry was imported from an early Glama registration under com.moltlinestudio.mcp; the same server is listed under its official MCP Registry name — use com.moltlinestudio/skillmd-lint. Endpoint unchanged: https://mcp.moltlinestudio.com/skillmd-lint — still live, still free on the free tier. Only this duplicate entry is deprecated.

Regex Test

regex_test
Read-onlyIdempotent

Test a regular expression against sample strings. FREE.

Typical input {"pattern": "v(\d+)", "samples": ["v12", "beta"]} returns {"pattern": ..., "results": [{"sample": "v12", "match": true, "matched_text": "v12", "groups": ["12"]}, {"sample": "beta", "match": false, ...}], "match_count": 1}.

Use to confirm a pattern matches what you expect before shipping it. Not for validating JSON (json_validate). The pattern is compiled and run in a short-lived, CPU-capped child process, so a pattern that backtracks catastrophically is stopped instead of stalling the server. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""} (for example {"error": "a sample is too long (max 10000 characters); shorten it and retry"}). Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
patternYesA Python-flavor regular expression as a string, e.g. "v(\\d+)".
samplesYesStrings to test the pattern against; only the first 50 are evaluated.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / pattern / maxLength
      Added value: +1000
    • addedInput schema / properties / samples / maxItems
      Added value: +50
  2. First observed

TDQS

A4.9/5.0
Behavior5/5

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

The description adds substantial behavioral context beyond the annotations: explains the CPU-capped child process to handle catastrophic backtracking, guarantees no protocol errors (returns error objects with fix guidance), and reiterates read-only/idempotent safety. This goes well beyond the readOnlyHint and idempotentHint annotations.

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 longer than typical but every section earns its place: purpose, example, usage, performance, error handling, and safety. It is front-loaded with the core function and example, and the ordering is logical. No verbose or redundant content.

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 2-parameter tool with an output schema, the description covers all necessary aspects: what it does, how to use it, error handling, performance behavior, and retry safety. The output schema explains return values, so nothing else is missing. It is complete for an agent to call it correctly.

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?

The schema already provides 100% coverage for both parameters with meaningful descriptions. The description adds a typical input example that clarifies exact formatting (e.g., double backslashes in the pattern) and the result structure, which is valuable on top of the schema. The baseline of 3 is exceeded by this example.

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 ('Test'), resource ('regular expression against sample strings'), and provides a concrete input/output example. It also explicitly names json_validate as the tool for JSON validation, distinguishing itself from siblings.

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 gives clear when-to-use guidance ('Use to confirm a pattern matches what you expect before shipping it') and an explicit exclusion ('Not for validating JSON (json_validate)') with a named alternative. This fully routes the agent.

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