You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add Raven (MCP server) and clean up stale Stella references (#2608)
* docs: add Raven MCP server, clean up stale Stella refs
Addresses three sub-issues of the Raven docs epic (#2588):
- #2585: Add a Raven (MCP server) section as the lead on the
"Building with AI" page, with tabbed connect commands, a
playground callout, and an Additional resources link.
- #2587: Remove the stale #stella-help Discord reference and
delete the orphaned Spanish ai-bot.mdx translation.
- #2589: Add a Raven pointer to the llms.txt header preamble.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* docs: fix prettier formatting and reword Raven comparison
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
* docs: apply markdown nits from review
- Use new-style admonition title syntax :::tip[...]
- Remove blank lines between Tabs/TabItem tags (Docusaurus requires
no line between tabs/tabitem boundaries; newlines around code blocks
are kept)
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: docs/build/building-with-ai.mdx
+98-1Lines changed: 98 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,10 +5,106 @@ sidebar_label: Building with AI
5
5
sidebar_position: 1
6
6
---
7
7
8
+
importTabsfrom"@theme/Tabs";
9
+
importTabItemfrom"@theme/TabItem";
10
+
8
11
# Building with AI
9
12
10
13
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.
11
14
15
+
## Raven (MCP server)
16
+
17
+
**Raven** is a remote **Model Context Protocol (MCP)** server for AI agents, hosted at [`raven.stellar.buzz`](https://raven.stellar.buzz). It is open source at [kalepail/stellar-raven](https://github.com/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.
18
+
19
+
Raven exposes two MCP tools:
20
+
21
+
-**`search`** — find relevant Stellar docs and ecosystem information.
22
+
-**`execute`** — run queries against live ecosystem data.
23
+
24
+
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.
25
+
26
+
Unlike the static [`llms.txt`](#using-llmstxt) file and the installable [Stellar Skills](#stellar-skills) below, Raven is a live, hosted server your agent talks to. All three are useful, and they work well together.
27
+
28
+
:::tip[Try it in your browser]
29
+
30
+
[raven.stellar.buzz/playground](https://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).
31
+
32
+
:::
33
+
34
+
### Connect your agent
35
+
36
+
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](https://raven.stellar.buzz).
For clients without native remote/OAuth support, bridge with [`mcp-remote`](https://github.com/geelen/mcp-remote):
87
+
88
+
```json
89
+
{
90
+
"mcpServers": {
91
+
"stellar-raven": {
92
+
"command": "npx",
93
+
"args": [
94
+
"-y",
95
+
"mcp-remote@latest",
96
+
"https://raven.stellar.buzz/mcp",
97
+
"--transport",
98
+
"http-only"
99
+
]
100
+
}
101
+
}
102
+
}
103
+
```
104
+
105
+
</TabItem>
106
+
</Tabs>
107
+
12
108
## Stellar Skills
13
109
14
110
[**skills.stellar.org**](https://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.
@@ -88,6 +184,7 @@ Popular tools like ChatGPT, Claude, Gemini, and Cursor all support adding custom
88
184
89
185
## Additional resources
90
186
187
+
-[Raven (stellar-raven)](https://github.com/kalepail/stellar-raven) - Open source remote MCP server for Stellar docs plus live ecosystem data
91
188
-[Stellar Skills](https://skills.stellar.org/) - Browse AI agent skills for Stellar development
92
189
-[stellar-dev-skill repository](https://github.com/stellar/stellar-dev-skill) - Source and installation for the official skills
93
-
-[Stellar Developer Discord](https://discord.gg/stellardev) - Ask questions in #stella-help
190
+
-[Stellar Developer Discord](https://discord.gg/stellardev) - Ask questions and get help from the community
0 commit comments