Metadata-Version: 2.4
Name: sonenta-mcp
Version: 0.35.0
Summary: DEPRECATED — the Sonenta MCP is now a pure-npm package. Run `npx -y @sonenta/mcp` instead; this PyPI package no longer runs a server.
Project-URL: Homepage, https://sonenta.com
Project-URL: Documentation, https://sonenta.com/docs/mcp/setup
Project-URL: Source, https://github.com/sonenta/tools
Project-URL: Issues, https://github.com/sonenta/tools/issues
Author: Sonenta
License: MIT
License-File: LICENSE
Keywords: claude,i18n,mcp,sonenta,translations
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Internationalization
Requires-Python: <3.14,>=3.11
Requires-Dist: httpx>=0.28
Requires-Dist: mcp>=1.0
Requires-Dist: pydantic>=2.9
Description-Content-Type: text/markdown

# sonenta-mcp — DEPRECATED

**The Sonenta MCP server is now a pure-npm package.** This PyPI distribution is
retired and no longer runs a server — its console command prints a migration
notice and exits.

## Migrate

Replace `uvx sonenta-mcp` (or `pipx run sonenta-mcp`) with:

```bash
npx -y @sonenta/mcp
```

In your `.mcp.json`:

```json
{
  "mcpServers": {
    "verbumia": {
      "command": "npx",
      "args": ["-y", "@sonenta/mcp"],
      "env": { "SONENTA_API_KEY": "<mcp:* key>", "SONENTA_PROJECTS": "<uuid,…>" }
    }
  }
}
```

`@sonenta/mcp` is pure TypeScript (Node ≥18, no Python/uv), reads the same env
(`SONENTA_API_KEY` / `SONENTA_BASE_URL` / `SONENTA_PROJECTS`; legacy `VERBUMIA_*`
accepted; default host `https://api.sonenta.dev`), and exposes the identical
tool surface.
