Metadata-Version: 2.2
Name: parody-mcp
Version: 0.1.0
Summary: An MCP tool that suggests funny, phonetically similar words
Author: Patrick Ruff
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp
Requires-Dist: pronouncing
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Parody Word Suggestion MCP Tool

This is an MCP tool that suggests funny, phonetically similar words using the CMU pronunciation dictionary.

## Installation

Install the package locally for development:
```bash
pip install -e .
```

## Usage

You can use this tool with smolagents like this:

```python
import os
from mcp import StdioServerParameters
from smolagents import CodeAgent, HfApiModel, ToolCollection

mcp_server_params = StdioServerParameters(
    command="uvx",
    args=["--quiet", "parody_mcp"],
    env={"UV_PYTHON": "3.12", **os.environ},
)

with ToolCollection.from_mcp(mcp_server_params) as tool_collection:
    agent = CodeAgent(tools=tool_collection.tools, model=HfApiModel())
    agent.run("Find me funny words that sound like 'hamburger'")
