Setup Guide

Connect AgentBoost to your favorite AI environments in minutes.

01

Google AI Edge Gallery (Mobile)

Unlock visual dashboards on your Android device. AgentBoost skills use the run_js tool to render premium data UIs.

  1. Go to the Marketplace and find a skill.
  2. Copy the Mobile Install Link (SKILL.md URL).
  3. Open AI Edge Gallery on your phone.
  4. Tap Manage Skills(+)Import from URL.
  5. Paste the URL and chat with your AI to trigger the dashboard.
02

Claude Desktop & Cursor (MCP)

AgentBoost supports the Model Context Protocol (MCP) standard. Connect our server to use all skills as native tools inside your desktop AI.

Configuration Snippet

"mcpServers": {
  "agentboost": {
    "command": "npx",
    "args": [
      "-y", 
      "@modelcontextprotocol/server-http", 
      "https://agentboost-seven.vercel.app/api/mcp"
    ],
    "env": {
      "AGENTBOOST_KEY": "YOUR_SK_KEY_HERE"
    }
  }
}

Note: Replace YOUR_SK_KEY_HERE with the key generated in your Dashboard.

03

OpenClaw & Python Automation

Build your own agents or use OpenClaw by calling our headless execution API directly.

import requests

def call_agentboost(skill, params):
    res = requests.post(
        "https://agentboost-seven.vercel.app/api/v1/execute",
        headers={"Authorization": "Bearer sk_your_key_here"},
        json={"skill": skill, "data": params}
    )
    return res.json()

# Example: Run a B2B lead search
data = call_agentboost("b2b-leads", {
    "domain": "stripe.com", 
    "role": "CEO"
})

print(data['data']['verified_leads'][0]['email'])

Need help with integration?

Our technical team is available for Enterprise support.

Contact Support