MCP connector

Local (stdio)

Run the AveTrust MCP server on your machine with your API key.

The local connector runs over stdio with your own API key — nothing leaves your machine except the AveTrust API calls.

Install

npm i -g @avetrust/mcp
# provides the `avetrust-mcp` binary (or use npx -y @avetrust/mcp)

Configure your client

Add it to your MCP client config (Claude Desktop, IDEs…):

{
  "mcpServers": {
    "avetrust": {
      "command": "avetrust-mcp",
      "env": { "AVETRUST_API_KEY": "sk_test_…" }
    }
  }
}

Or with the Claude Code CLI:

claude mcp add avetrust --env AVETRUST_API_KEY=sk_test_… -- avetrust-mcp

Environment variables

VariablePurposeDefault
AVETRUST_API_KEYYour API key (sk_test_… recommended)— (required)
AVETRUST_BASE_URLOverride the API hostapi-test.avetrust.net
AVETRUST_ALLOW_LIVEAllow a sk_live_ keyfalse
AVETRUST_ALLOW_PIIAllow reading personal data in resultsfalse

Start in sandbox

Use a sk_test_ key first. The assistant can then create and simulate verifications without touching production.

Next steps

On this page