Quick Start

This guide will help you get started with BondMCP API integration in just a few minutes.

Step 1: Sign Up

Create an account at bondmcp.com to get access to the API.

Step 2: Get Your API Key

After signing up, navigate to the API Keys section in your dashboard to generate an API key.

Step 3: Choose Your Integration Method

We provide SDKs in multiple languages for easy integration:

# JavaScript/TypeScript
npm install bondmcp

# Python
pip install bondmcp

# Go
go get github.com/bondmcp/bondmcp-go

Option B: Direct API Integration

If you prefer to use the API directly, you can make HTTP requests to our endpoints.

Step 4: Make Your First API Call

Using an SDK

// JavaScript/TypeScript
import { BondMCPClient } from 'bondmcp';

const client = new BondMCPClient({ apiKey: 'your-api-key' });

// Ask a health question
const response = await client.ask('What are the symptoms of high blood pressure?');
console.log(response.answer);
# Python
from bondmcp import BondMCPClient

client = BondMCPClient(api_key='your-api-key')

# Ask a health question
response = client.ask('What are the symptoms of high blood pressure?')
print(response.answer)

Using Direct API

curl -X POST https://api.bondmcp.com/api/v1/ask \
  -H "X-API-Key: your-api-key" \
  -H "Content-Type: application/json" \
  -d '{"message": "What are the symptoms of high blood pressure?"}'

Next Steps

For complete documentation, visit docs.bondmcp.com

Last updated

Was this helpful?