Agent skill

output-parsers

Generate output parsers for mcptools with unstructured return types. Use when a tool returns raw strings or Result models with single str fields and needs structured ParseResult output. Covers testing tools, identifying parseable structures, extending modules with ParseResult models, and creating parser implementations.

Stars 129
Forks 9

Install this agent skill to your Project

npx add-skill https://github.com/gradion-ai/freeact/tree/main/freeact/agent/config/templates/skills/output-parsers

SKILL.md

Output Parsers for mcptools

Generate output parsers for Python tools in the mcptools package that have unstructured return types.

Identifying Unstructured Return Types

A tool has an unstructured return type when its run() function returns:

  • A str directly
  • A Result model with a single str field (named result, content, output, etc.) plus only model_config

A Result model with multiple fields (beyond model_config) has a structured return type and does not need a parser.

Workflow

1. Test the Python tool

Run the Python tool with ipybox_execute_ipython_cell tool using 2-3 example inputs to observe return value patterns:

python
from mcptools.<category>.<tool> import run, Params

result = run(Params(...))
print(result)  # or print(result.result) for Result types

2. Identify structure

Examine the output for parseable structure (JSON, JSONL, XML, delimited text, etc.). If no consistent structure exists, a parser cannot be generated.

3. Extend the Python tool module

Preservation rules when extending tool modules:

  • Never modify existing Params class or other existing model definitions
  • Never remove or modify existing imports (they may be used by existing code)
  • Only add new imports, models, and functions

Docstring guidelines:

  • Derive docstrings from the original run() function docstring
  • ParseResult docstring should describe the parsed data structure
  • run_parsed() docstring must be exactly the same as the run() docstring
  • Field descriptions should explain what each field contains

Add to {generated_rel_dir}/mcptools/<category>/<tool>.py:

  1. A ParseResult model:
python
class ParseResult(BaseModel):
    """<Describe parsed data, derived from run() docstring>."""

    model_config = ConfigDict(
        use_enum_values=True,
    )
    <field_name>: <field_type> = Field(..., title="<Title>", description="<What this field contains>")
  1. A run_parsed() function:
python
def run_parsed(params: Params) -> ParseResult:
    """<Copy exact docstring from run() function>."""
    from mcpparse.<category>.<tool> import parse

    result = run(params)
    # For str return: return parse(result)
    # For Result return: return parse(result.result)
    return parse(result)

4. Create parser module

Create {generated_rel_dir}/mcpparse/<category>/<tool>.py with:

python
from mcptools.<category>.<tool> import ParseResult


class <Tool>ParseError(Exception):
    """Exception raised when parsing <tool> results fails."""
    pass


def parse(result: str) -> ParseResult:
    """Parse <tool> result into structured data.

    Args:
        result: Raw string result from the tool

    Returns:
        ParseResult with structured data

    Raises:
        <Tool>ParseError: If parsing fails
    """
    # Implementation based on observed output structure
    ...
    return ParseResult(...)

5. Test run_parsed()

Call the ipybox_reset tool to restart the IPython kernel so the next import loads the modified module.

Then test with ipybox_execute_ipython_cell using the same example inputs from step 1:

python
from mcptools.<category>.<tool> import run_parsed, Params

result = run_parsed(Params(...))
print(result)

Verify that the ParseResult fields are correctly populated.

Examples

str return type (web_search)

Original: run(params: Params) -> str returns JSONL

Extended with:

  • SearchResult model for individual items
  • ParseResult with results: list[SearchResult]
  • run_parsed() that parses JSONL into structured objects

Result return type (search_abstracts)

Original: run(params: Params) -> Result where Result.result: str

Extended with:

  • Article model for individual items
  • ParseResult with articles: list[Article]
  • run_parsed() that parses result.result into structured objects

Expand your agent's capabilities with these related and highly-rated skills.

gradion-ai/freeact

freeact-interaction

Interact with freeact agent via tmux for testing

129 9
Explore
gradion-ai/freeact

saving-codeacts

Save executed Python code as reusable tools in the gentools package. Use when preserving successful code executions for later reuse. Covers creating package structure (api.py, impl.py), defining Pydantic output models, and implementing the run() interface.

129 9
Explore
gradion-ai/freeact

task-planning

Structured task planning workflow with user feedback loops. Use when the user explicitly requests planning (e.g., "make a plan", "plan first", "create a plan"). Covers creating plans with actionable steps, iterating based on feedback, saving confirmed plans, and executing step-by-step with progress tracking.

129 9
Explore
gradion-ai/ipybox

codeact

Generate and execute code for acting with Python tools. Activate when user explicitly requests to "use the codeact skill" or similar phrases.

74 18
Explore
zebbern/claude-code-guide

Ethical Hacking Methodology

This skill should be used when the user asks to "learn ethical hacking", "understand penetration testing lifecycle", "perform reconnaissance", "conduct security scanning", "exploit vulnerabilities", or "write penetration test reports". It provides comprehensive ethical hacking methodology and techniques.

3,752 348
Explore
zebbern/claude-code-guide

Red Team Tools and Methodology

This skill should be used when the user asks to "follow red team methodology", "perform bug bounty hunting", "automate reconnaissance", "hunt for XSS vulnerabilities", "enumerate subdomains", or needs security researcher techniques and tool configurations from top bug bounty hunters.

3,752 348
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results