Best for
- Developers using Deno as their runtime who want reliable structured output for AI agents.
- Agent integrations that need to reduce token usage and avoid parsing terminal text.
The Pare Deno server focuses on structured output for Deno runtime operations, providing typed JSON via MCP to reduce token consumption and avoid text parsing issues. It wraps only the Deno tool, making it suitable for agent scenarios that require reliable data sets.
Pare Deno is an MCP server from the Pare toolkit that wraps the Deno CLI to return structured, schema-validated JSON instead of raw terminal text. This provides AI agents with predictable, typed data they can act on directly, avoiding fragile text parsing. The server is distributed via the npm package @paretools/deno, uses stdio transport, and conforms to the Model Context Protocol.
Install the @paretools/deno package via npm and configure it in your MCP client with stdio transport. For example, in Claude Desktop's config, add something like "command": "npx", "args": ["-y", "@paretools/deno"].