| Version | Security fixes |
|---|---|
| latest (main) | Yes |
| older tags | No — upgrade to latest |
Credentials are split into two layers:
| File | Contents | Scope |
|---|---|---|
~/.corezoid/credentials |
ACCESS_TOKEN, ACCESS_TOKEN_EXPIRES_AT |
User — shared across all projects |
<project>/.env |
WORKSPACE_ID, COREZOID_STAGE_ID, API URLs |
Project — one per workspace |
Token file: written with permissions 0600; the ~/.corezoid/ directory is created with 0700.
Plugin package: plugins/corezoid/.mcp.json ships without any credentials — tokens are never bundled in the marketplace package.
Load order: the MCP server loads ~/.corezoid/credentials first, then the project .env. A token in .env overrides the user-level one (for environments that manage credentials externally).
- OAuth2 flows go to
account.corezoid.comonly. - All Corezoid API calls go to the
COREZOID_API_URLconfigured in.env(default:https://api.corezoid.com). - TLS verification is enabled by default. It can be disabled with
COREZOID_INSECURE_TLS=1— only for on-premises installations with self-signed certificates. - Anonymous tool-call telemetry (tool name, duration ms, error type, API hostname) is sent to
www.corezoid.com. No tokens, workspace identifiers, process content, or personally identifiable data are included. SetCOREZOID_ANALYTICS_DISABLED=1to opt out.
On first start the MCP server launcher (run.sh) downloads a prebuilt binary from the GitHub
Release that matches the version declared in plugin.json:
https://github.com/corezoid/corezoid-ai-plugin/releases/download/v{VERSION}/convctl-{os}-{arch}
The binary is cached in ~/.cache/corezoid-mcp/{VERSION}/. If the download fails (no network,
unsupported platform, or checksum mismatch) the launcher falls back to go run . from source.
Checksum verification is automatic. run.sh downloads checksums.txt alongside the binary,
computes the SHA256 digest, and only promotes the binary to the cache if the hashes match. A
mismatched or missing checksum causes the download to be discarded silently.
To re-verify a cached binary manually:
curl -fsSL https://github.com/corezoid/corezoid-ai-plugin/releases/download/v{VERSION}/checksums.txt \
| sha256sum --check --ignore-missingEach GitHub Release includes a checksums.txt file generated by CI at build time.
ACCESS_TOKENor OAuth2 refresh tokens of any kind.env— create this file in your working project directory; it must remain untracked (add to.gitignoreif not already present)~/.corezoid/credentials- Workspace IDs or stage IDs tied to private environments
- Exported process files (
.conv.json) that contain private business logic or customer data
If you discover a security issue — including a secret accidentally committed to this repository — do not open a public GitHub issue. Instead:
- Open a private security advisory at
https://github.com/corezoid/corezoid-ai-plugin/security/advisories/new. - Or email
support@corezoid.comwith subject[SECURITY] corezoid-ai-plugin.
We will acknowledge within 2 business days and coordinate a fix before any public disclosure.