Clarx MCP is an npm package published by ai.clarx that exposes Clarx cloud capabilities to AI agents over a stdio transport. The server is configured with two environment variables: an Anthropic API key and a Clarx MCP token, which together authenticate the agent against the Clarx platform.
The server covers three documented functions. First, it scores agent manifests — an agent can submit a manifest and receive a structured quality or compliance score from the Clarx analysis engine. Second, it generates CI workflow files, allowing an agent to produce ready-to-use continuous integration configurations based on the project context. Third, it pulls Clarx scan findings directly into the developer’s IDE, surfacing security or quality issues that Clarx has detected without requiring a manual context switch to a separate dashboard.
Because the transport is stdio, the server runs as a local child process and communicates through standard input and output. This means it integrates with any MCP-compatible host that supports stdio, such as a locally running IDE extension or agent harness, but it is not suitable for remote or networked deployments without a wrapper.
The package is at version 0.2.0 on the npm registry under the identifier @clarxai/mcp. There is no bundled license declaration in the registry record. Developers who need Clarx scan data, manifest validation, or CI scaffolding surfaced inside an agentic workflow are the target audience.