Skip to main content

Building with AI

Stellar provides resources to help AI assistants and Large Language Models (LLMs) understand our documentation, making it easier for you to get accurate answers about Stellar development.

Raven (MCP server)

Raven is a remote Model Context Protocol (MCP) server for AI agents, hosted at raven.stellar.buzz. It is open source at kalepail/stellar-raven. This is the recommended path: connect your agent once and it gets Stellar docs plus live ecosystem data, cross-referenced into single answers on demand.

Raven exposes two MCP tools:

  • search — find relevant Stellar docs and ecosystem information.
  • execute — run queries against live ecosystem data.

Under the hood it wraps Stellar Docs (via Algolia), Lumenloop, Stellar Light, and ecosystem skills, so your agent gets one cross-referenced answer instead of several disconnected sources.

Unlike the static llms.txt file and the installable Stellar Skills below, Raven is a live, hosted server your agent talks to. All three are useful, and they work well together.

Try it in your browser

raven.stellar.buzz/playground is a hosted chat UI where you can ask Raven questions directly in the browser, no agent setup required (sign-in required).

Connect your agent

Add the server, then sign in. Sign-in happens inside your own client (Raven uses OAuth), so the first request opens your browser to authorize. For full setup details see raven.stellar.buzz.

claude mcp add --transport http stellar-raven "https://raven.stellar.buzz/mcp"
# then run /mcp -> Authenticate -> sign in in your browser

Stellar Skills

skills.stellar.org is the home for Stellar Skills—a collection of AI agent skills that give your coding assistant the right Stellar context before it writes code. They work with any AI agent, and you can browse every skill on the website with no installation required.

Skills are open source and maintained in the stellar/stellar-dev-skill repository.

Official skills

The official skills cover the core areas of Stellar development:

SkillWhat it covers
Soroban Smart ContractsWriting, testing, securing, and shipping Rust smart contracts
Frontend & WalletsBuilding dApps with the JavaScript SDK, wallet integration (Freighter, Stellar Wallets Kit), and smart accounts with passkeys
Stellar Assets & SACClassic assets, trustlines, and the Soroban Asset Contract bridge
RPC & Horizon APIsQuerying chain data via modern Stellar RPC or the legacy Horizon endpoints
Agent PaymentsMonetizing AI APIs with x402 and the Machine Payments Protocol (MPP)
ZK ProofsVerifying zero-knowledge proofs on-chain
SEPs, CAPs & EcosystemStandards and ecosystem integration guidance

Community skills

The ecosystem also contributes skills for popular protocols and tools. Browse the full, up-to-date list at skills.stellar.org. Community skills are maintained by their respective authors, so review each one to confirm it meets your security and maintenance requirements before using it.

Installation

Skills can be installed on any AI coding tool that supports the Agent Skills standard. Each tool reads skills from its own directory:

PlatformSkills directory
Claude Code~/.claude/skills/
OpenCode~/.config/opencode/skill/
OpenAI Codex~/.codex/skills/

Claude Code

/plugin marketplace add stellar/stellar-dev-skill
/plugin install stellar-dev@stellar-dev

OpenAI Codex

git clone https://github.com/stellar/stellar-dev-skill ~/.codex/skills/stellar-dev-skill

Using npx (works with any compatible tool)

npx skills add https://github.com/stellar/stellar-dev-skill

Manual installation

Clone the repository and copy the contents of the skills/ directory into your agent's skills location (see table above).

Once installed, your AI coding assistant will automatically have access to up-to-date Stellar development knowledge when you work on Stellar projects.

For other AI coding tools like Cursor, Windsurf, or Aider, you can consider the community-maintained OpenSkills CLI, which aims to bring the Agent Skills system to a wide range of AI coding agents. OpenSkills is a third-party project and not an official Stellar offering, so be sure to review the repository and its documentation to verify that it meets your security and maintenance requirements before using it.

Using llms.txt

llms.txt is a standardized way to provide documentation context to AI systems. This file contains a structured overview of Stellar's developer documentation optimized for LLM consumption.

When you ask an AI assistant about Stellar, it can reference this file to:

  • Understand the structure of our documentation
  • Find relevant pages for your questions
  • Provide more accurate, up-to-date answers

Other AI tools

Any AI assistant with custom context features can benefit from Stellar's resources. You can add llms.txt to your tool's context settings, or paste its contents directly into conversations to give the AI knowledge about Stellar development.

Popular tools like ChatGPT, Claude, Gemini, and Cursor all support adding custom context through their settings. We're actively working on dedicated integrations for more AI tools—check back for updates or follow the Stellar Skills repository for the latest supported platforms.

Additional resources