# Data Converter

Convert data between over 40 formats including JSON, CSV, Excel, and PDF. Restructure complex schemas into custom layouts to ensure seamless data integration. Simplify information processing by autom…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add data-transform-agent/data-transform

# Browse available tools
npx -y smithery tool list data-transform-agent/data-transform

# Get full schema for a tool
npx -y smithery tool get data-transform-agent/data-transform transform

# Call a tool
npx -y smithery tool call data-transform-agent/data-transform transform '{}'
```

## Direct MCP Connection

Endpoint: `https://data-transform--data-transform-agent.run.tools`

## Tools (3)

- `transform` — Convert data from one format to another. Supports 43+ conversion pairs across JSON, CSV, XML, YAML, TOML, HTML, Markdow…
- `reshape_json` — Restructure JSON data from one schema to another using dot-notation path mapping. Maps fields from the source to new po…
- `list_capabilities` — List all supported format conversion pairs with pricing and average response times. Call this first to discover which s…

```bash
# Get full input/output schema for a tool
npx -y smithery tool get data-transform-agent/data-transform <tool-name>
```

## Resources

- `transform://capabilities` — Complete list of all supported format conversion pairs with pricing and performance data.
- `transform://formats` — List of all input and output formats supported by the transform agent.

## Prompts (2)

- `convert-data` (source_format, target_format, data) — Convert data from one format to another. Provide the source format, target format, and data.
- `reshape-json` (data, mapping) — Restructure JSON by mapping fields from one schema to another using dot-notation paths.
