Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,20 @@ make install-dev
"args": ["-m", "axiomatic_mcp.servers.documents"],
"env": {
"AXIOMATIC_API_KEY": "your-api-key-here",
"DISABLE_TELEMETRY": "true" // optionally prevent sending logs to Moesif
"DISABLE_TELEMETRY": "true", // optionally prevent sending logs to Moesif
"API_URL": "https://api.staging.axiomatic-ai.com" // optionally point to staging/local environment
}
}
}
```

### Using staging or local environment

In your MCP settings, change the `API_URL` parameter to point to the staging or local API (see configuration above):

- staging: `"API_URL": "https://api.staging.axiomatic-ai.com"`
- local: `"API_URL": "http://localhost:8000"` (or your chosen port to run ax-stack)

### Adding a New Server

1. Create server directory:
Expand Down
2 changes: 1 addition & 1 deletion axiomatic_mcp/shared/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import httpx

API_URL = "https://api.axiomatic-ai.com"
API_URL = os.getenv("API_URL", "https://api.axiomatic-ai.com")

TIMEOUT = 1000

Expand Down