Skip to main content
Blaxel provides LLM-accessible tools that you can plug locally in your coding assistant (Cursor, Windsurf, Claude Desktop, etc.). There are several options:
  1. The Blaxel Agent Skill lets your coding agent autonomously create sandboxes, deploy agents, run jobs, and launch MCP server on Blaxel using simple prompts.
  2. The Blaxel MCP server lets your coding agent directly read and ask questions of this documentation in real-time for up-to-date commands and features.
  3. An llms-full.txt text file with the entire documentation compiled and formatted for LLMs.
  4. A native AI assistant built into this documentation portal.

Option 1: Connect Blaxel skills

Blaxel Agent Skill

Install the Blaxel Skill to give your coding agent native platform access — create sandboxes, deploy agents, run batch jobs, and more from natural language.
npx skills add blaxel-ai/agent-skills

Option 2: Install the MCP server

For Cursor

  1. Open Cursor Settings
  2. Go to MCP & Integrations
  3. Click ”+ Add a custom MCP server”
  4. Add this configuration:
{
  "mcpServers": {
    ... // Your other MCP servers
    "blaxel-docs": {
      "url": "https://docs.blaxel.ai/mcp"
    }
  }
}

For Claude Code

Add the remote HTTP server to your Claude Code by running the following command:
claude mcp add --transport http blaxel-docs https://docs.blaxel.ai/mcp

Option 3: Copy-paste llms-full.txt

You’ll find a llms-full.txt file at the root level of this documentation. It is a compiled text document designed to provide context for LLMs. Copy the following content and paste it in the prompt for your coding assistant: https://docs.blaxel.ai/llms-full.txt

Option 4: Use the documentation’s built-in assistant

This documentation portal has a built-in AI assistant. Simply click “✨Ask AI” at the top of any page to use it.
Last modified on March 26, 2026