Quick Start Guide
August 28, 2025 ยท View on GitHub
Get up and running with BondMCP in minutes.
1. Install CLI
pip install bondmcp-cli
2. Authenticate
bondmcp auth login
3. Create API Key
bondmcp keys create --name "quickstart"
4. Make Your First Call
bondmcp ask "What are the health benefits of exercise?"
5. Try Different Endpoints
Health Analysis
bondmcp analyze --data "blood_pressure: 120/80, heart_rate: 70"
Lab Results
bondmcp labs analyze --file "my_lab_results.json"
Nutrition
bondmcp nutrition analyze --meal "grilled chicken, brown rice, broccoli"
Using SDKs
Python
pip install bondmcp-python
from bondmcp import BondMCP
client = BondMCP(api_key="your-api-key")
response = client.ask("What should I eat for breakfast?")
print(response.answer)
JavaScript
npm install @bondmcp/sdk
import { BondMCP } from '@bondmcp/sdk';
const client = new BondMCP({ apiKey: 'your-api-key' });
const response = await client.ask('What should I eat for breakfast?');
console.log(response.answer);
No Web Interface
BondMCP is . There is no web dashboard or browser-based interface.