AI coding agents like Claude Code, Cursor, and Windsurf can build Cloudglue integrations faster when they understand the SDK and API patterns. This page covers how to teach your agent to build applications with Cloudglue APIs.Documentation Index
Fetch the complete documentation index at: https://docs.cloudglue.dev/llms.txt
Use this file to discover all available pages before exploring further.
Cloudglue Skills
Cloudglue Skills are pre-packaged knowledge bundles that follow the agentskills.io specification. They provide your coding agent with core concepts, correct code patterns, method signatures, and troubleshooting guidance — so it writes working Cloudglue integrations on the first try.- npm
- pnpm
- Yarn
- Bun
bash npx skills add cloudglue/skills - Embedded package docs — version-locked Markdown shipped with the JS SDK (most reliable)
- Source code — full type information from
node_modules - Remote docs — conceptual guides at docs.cloudglue.dev
Docs MCP Server
A hosted MCP server that exposes Cloudglue documentation as tools your agent can call live. Skills ship version-locked SDK knowledge with your project — the docs MCP complements them with always-current conceptual docs, API reference, and newly released material. Endpoint:https://docs.cloudglue.dev/mcp (no authentication required)
Don’t confuse this with the Cloudglue MCP
Server — that one gives agents video
understanding tools (transcription, extraction, search). This one lets agents
query the Cloudglue docs.
- Claude Code
- Cursor / Claude Desktop
- Proxy (older clients)
More Ways to Teach Your Agent
Docs MCP Server
Hosted MCP at
docs.cloudglue.dev/mcp that lets any MCP-aware agent query
live Cloudglue documentation on demand.Embedded Package Docs
The JS SDK ships 14 Markdown files covering all APIs, version-locked to your
installed SDK version.
llms.txt
Comprehensive documentation index in Markdown format. Feed it to any LLM
that needs broad Cloudglue context.
Embedded Package Docs
The Cloudglue JS SDK (@cloudglue/cloudglue-js) ships documentation alongside the code. After installing the SDK, you’ll find 14 Markdown files covering every API surface:
Context Files
Cloudglue publishes anllms.txt file following the emerging convention for LLM-friendly documentation:
Recommended Setup
Install Cloudglue Skills
Install skills in your project directory to teach your coding agent how to
build with Cloudglue APIs.
Install the JS SDK
Run
npm install @cloudglue/cloudglue-js. The embedded docs in the package
become the agent’s tier-1 reference, automatically used by Cloudglue Skills.(Optional) Connect the Docs MCP Server
Point your agent at
https://docs.cloudglue.dev/mcp for on-demand access to
the latest Cloudglue documentation. See Docs MCP
Server for setup snippets.