Metadata-Version: 2.4
Name: tinyurl-mcp-server
Version: 0.1.3
Summary: TinyURL MCP Server
Project-URL: Homepage, https://github.com/1001coder/tinyurl-mcp-server
Project-URL: Issues, https://github.com/1001coder/tinyurl-mcp-server/issues
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: mcp>=1.6.0
Requires-Dist: requests>=2.32.3
Description-Content-Type: text/markdown

# TinyURL MCP Server

A simple MCP server for generating short links using TinyURL API.

## Configuration

```json
{
    "mcpServers": {
        "tinyurl": {
            "command": "uvx",
            "args": ["tinyurl-mcp-server"],
            "env": {
                "TINYURL_API_KEY": "your_tinyurl_api_key"
            }
        }
    }
}
```