Skip to content
/ docs Public

Documentation for Arcade AI

ArcadeAI/docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arcade Documentation

Documentation for Arcade

Local Development

See the package.json for the dependencies required.

First, run pnpm install to install the dependencies.

Then, run pnpm dev to start the development server and visit localhost:3000.

Environment Variables

Copy .env.example to .env.local and fill in the required values:

cp .env.example .env.local
  • OPENAI_API_KEY - Required for generating the llms.txt file with AI-powered summaries

llms.txt Generation

The project includes a Next.js plugin that automatically generates an llms.txt file following the llms.txt specification. This file helps LLMs understand and navigate the documentation.

Automatic generation: Runs during production builds (pnpm build)

Manual generation: Run pnpm llmstxt to regenerate the file

See scripts/README-llmstxt.md for detailed documentation.

Styling

We use Nextra's built-in Callout component for callouts in MDX:

<Callout>A general callout. Use sparingly.</Callout>

<Callout type="warning">
  Use this when there's something potentially destructive to call attention to.
</Callout>

<Callout type="info">
  Use this for asides you don't have time to get into, like mentioning that
  folks should checkout the [official MCP documentation](https://mcp.arcade.dev)
  to learn more. (Hint: it always has a link!)
</Callout>

Generate documentation for a MCP Server toolkit

Run make toolkit-docs and follow the instructions in the terminal. This command will automatically generate documentation for the tools in a specified Arcade MCP Server Python package.

Releases

No releases published

Contributors 19