workspace_statusRead the configured workspace plan and current monthly usage.
Production API and agent contract
Account-scoped, read-only US-equity daily-bar snapshots from the IEX market-data feed. This page describes only the deployed, account-scoped API and the customer-installed MCP bridge.
Create a product API key in the signed-in dashboard. Keep it in a server or local-agent environment variable—never in browser code, a prompt, source control, or a shared configuration file.
PRODUCT_API_KEY in your local shell or server secret manager.https://client-platform-rho.vercel.app/v1export PRODUCT_API_KEY="replace-with-a-product-key" curl -sS "https://client-platform-rho.vercel.app/v1/products/aetherquant/api/status" -H "X-API-Key: $PRODUCT_API_KEY"
A key is product-scoped: it can access only its own product workspace and never another customer account. Missing or invalid keys return 401; invalid request input returns 422; an exhausted monthly quota returns 429.
Each plan uses the same account-scoped unit: completed read-only market-data snapshot requests per calendar month.
| Plan | Monthly quota |
|---|---|
| Developer | 1,000 completed read-only market-data snapshot requests per calendar month |
| Pro Dev Tier | 100,000 completed read-only market-data snapshot requests per calendar month |
A provider failure is not metered. A completed request may truthfully return no bars when the feed has no usable result. Usage is reported by the status endpoint and reset by the control plane's calendar-month usage window.
All paths below are relative to https://client-platform-rho.vercel.app/v1 and require X-API-Key. The API returns JSON and creates only account-owned artifacts.
/products/aetherquant/api/statusRead the authenticated workspace's plan labels, monthly quota, usage, remaining quota, and current period boundary.
curl -sS "https://client-platform-rho.vercel.app/v1/products/aetherquant/api/status" -H "X-API-Key: $PRODUCT_API_KEY"
/products/aetherquant/api/work-items?limit=20List up to 100 workspace artifacts owned by the authenticated product key.
curl -sS "https://client-platform-rho.vercel.app/v1/products/aetherquant/api/work-items?limit=20" -H "X-API-Key: $PRODUCT_API_KEY"
/products/aetherquant/api/market-dataFetch and save one account-owned, read-only IEX daily-bar snapshot.
curl -sS -X POST "https://client-platform-rho.vercel.app/v1/products/aetherquant/api/market-data" -H "X-API-Key: $PRODUCT_API_KEY" -H "Content-Type: application/json" --data '{"ticker":"AAPL","limit":30}'The supported bridge is a local stdio process in services/customer-mcp. It calls the same production API with a key held only in its process environment.
{
"mcpServers": {
"aetherquant": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/automated-businesses/services/customer-mcp",
"client-platform-mcp",
"--product",
"aetherquant"
],
"env": {
"CLIENT_PLATFORM_API_KEY": "replace-with-a-product-key"
}
}
}
}Run the configuration from a checked-out copy of this project. The bridge exposes one product selected by --product aetherquant; it does not expose checkout, billing, API-key creation, API-key revocation, or cross-product access as tools.
workspace_statusRead the configured workspace plan and current monthly usage.
list_workspace_artifactsList saved workspace artifacts owned by the API key.
aetherquant_market_snapshotFetch a read-only IEX US-equity daily-bar snapshot.
Do not give an agent a Stripe credential, payment card, browser session, or API key in its prompt. The documented MCP bridge reads only the product API key from its local environment and returns only the product API response.