The Tempo Content Intelligence MCP Server requires specific environment variables to manage its runtime, database connections, and LLM providers.
The Tempo Content Intelligence MCP Server requires specific environment variables to manage its runtime, database connections, and LLM providers.
These variables control the basic operation, security, and networking of the MCP server.
PORT: (Default: 3000) The local port the server binds to.CONTENT_INTELLIGENCE_BASE_URL: The base URL for internal HTTP contract routing. Defaults to http://127.0.0.1:$PORT. If set to an external URL, the server acts as a proxy to a remote backend.CONTENT_INTELLIGENCE_REQUEST_TIMEOUT_MS: (Default: 10000) Request timeout for upstream HTTP calls in milliseconds.MCP_BEARER_TOKEN: An optional bearer token used to secure the /mcp and /api surfaces.MCP_ALLOWED_ORIGINS: A comma-separated list of allowed origins for CORS policies.Required when running in embedded mode (where CONTENT_INTELLIGENCE_BASE_URL points to the local server).
CI_NEXUS_DB_SECRET_ARN: The AWS Secrets Manager ARN containing the Postgres host, database, username, and password.CI_NEXUS_ITEM_STORE_HOST: Optional override for the item-store hostname (useful for local tunneling).CI_NEXUS_ITEM_STORE_PORT: (Default: 5432) Postgres port for the item store.CI_NEXUS_ITEM_STORE_DB: (Default: shared_item_store) Database name for the item store.CI_NEXUS_INSIGHTS_DB_SECRET_ARN: Optional secret ARN for read-only Insights database access.CI_NEXUS_INSIGHTS_HOST: Optional host for the Insights database.CI_NEXUS_INSIGHTS_DB: (Default: shared_insights) Database name for Insights.CI_NEXUS_INSIGHTS_PORT: Optional port for the Insights database.Controls model selection and inference provider behavior.
CI_LLM_MODE: (stub | anthropic) Set to stub for deterministic in-memory evaluations or anthropic to enable real API calls.CI_LLM_PROVIDER: (anthropic | bedrock) Selects the underlying SDK provider.CI_ANTHROPIC_API_KEY: Required when CI_LLM_PROVIDER is set to anthropic.CI_AWS_REGION: The AWS region for Bedrock/Secrets Manager. Falls back to AWS_REGION if unset.CI_BEDROCK_REGION_PREFIX: (us | eu | au) Region prefix for Bedrock cross-region inference profiles.CI_BEDROCK_HAIKU_MODEL_ID: Optional override for the specific Bedrock Haiku model ID.CI_BEDROCK_SONNET_MODEL_ID: Optional override for the specific Bedrock Sonnet model ID.BEDROCK_REGION: Regional fallback for Bedrock SDK clients (Default: us-east-1).BEDROCK_MODEL_ID: Foundation model ID alias used by the AI SDK (Default: us.anthropic.claude-sonnet-4-6).These variables manage the findings engine, publisher, and model-validation suites.
CI_FINDING_PUBLISHER: (log | webhook | noop) Determines where findings are routed.CI_FINDING_WEBHOOK_URL: The destination URL when CI_FINDING_PUBLISHER is set to webhook.CI_MIN_CALIBRATION_OBSERVATIONS: (Default: 30) Minimum data points required to calculate stable effort calibration.CI_MODEL_VALIDATION_ORGANIZATION_ID: The organization scope used for model-validation backtests.CI_MODEL_VALIDATION_SOURCE: (auto | item_store | insights) Defines which data source the backtest prefers.CI_MODEL_VALIDATION_ASSESSOR_REPORTS: A comma-separated list of JSON files containing saved assessor results, used to include direct validation coverage in the summary report.CI_ASSESSOR_VALIDATION_ORGANIZATION_ID: Target organization for direct assessor-validation suites. Set to all to sample across all tenants.See Getting Started for setup instructions.