Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,18 @@ This skill provides AI assistants with deep knowledge of the current Stellar dev
- **Security**: Smart contract security patterns, audit checklists
- **Ecosystem**: DeFi protocols, developer tools, community projects

## Raven — live MCP server

These skills give your agent durable Stellar context, baked in. [Raven](https://raven.stellar.buzz) is a complementary **remote MCP server (Model Context Protocol)** for on-demand lookups: connect an agent and it searches Stellar docs and live ecosystem data, cross-referenced into single answers. Its catalog also includes these skills, so Raven is a live delivery gateway for them. Use both — skills for durable best practices, Raven for current lookups.
Comment thread
oceans404 marked this conversation as resolved.
Outdated

Raven is open source at [kalepail/stellar-raven](https://github.com/kalepail/stellar-raven). Connect it in Claude Code:

```bash
claude mcp add --transport http stellar-raven "https://raven.stellar.buzz/mcp"
```

You can also try Raven in the browser at the [playground](https://raven.stellar.buzz/playground), a hosted chat UI for asking Raven questions (sign-in required).

## Installing

These skills work with any agent that supports the [Agent Skills](https://agentskills.io) standard.
Expand Down
2 changes: 1 addition & 1 deletion site/src/data/skills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const SKILL_CARD_SOURCES: readonly SkillCardSource[] = [
category: "Ecosystem",
title: "SEPs, CAPs & Ecosystem",
description:
"Pick the right SEP or CAP for your feature, with ecosystem projects and curated reference links.",
"Pick the right SEP or CAP for your feature, with ecosystem projects, curated reference links, and MCPs.",
},
] as const;

Expand Down
12 changes: 11 additions & 1 deletion skills/standards/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: standards
description: Stellar standards, ecosystem, and reference. Covers SEPs (Stellar Ecosystem Proposals), CAPs (Core Advancement Proposals), and a quick map for picking the right standard for wallets, anchors, payments, deposits/withdrawals, federation, deep links, and KYC. Also bundles ecosystem references (DeFi protocols, dev tools, wallets, infra, community projects) and curated documentation links. Use when you need to know which SEP applies, or want a starting point for ecosystem integrations and official docs.
description: Stellar standards, ecosystem, and reference. Covers SEPs (Stellar Ecosystem Proposals), CAPs (Core Advancement Proposals), and a quick map for picking the right standard for wallets, anchors, payments, deposits/withdrawals, federation, deep links, and KYC. Also bundles ecosystem references (DeFi protocols, dev tools, wallets, infra, community projects), curated documentation links, and MCP servers (live tools such as Raven). Use when you need to know which SEP applies, or want a starting point for ecosystem integrations, official docs, or live MCP tooling.
user-invocable: true
argument-hint: "[standards or ecosystem lookup]"
---
Expand Down Expand Up @@ -368,6 +368,16 @@ Rust SDK for smart contract development.
- **GitHub**: https://github.com/stellar/rs-soroban-sdk
- **Crate**: `soroban-sdk`

### AI & MCP Tools

#### Raven
Remote MCP (Model Context Protocol) server for AI agents — searches Stellar docs and live ecosystem data, cross-referenced into single answers. Its catalog also serves these skills.
- **Server**: https://raven.stellar.buzz (MCP endpoint: https://raven.stellar.buzz/mcp)
- **Playground**: https://raven.stellar.buzz/playground (hosted chat UI for humans; sign-in required)
- **GitHub**: https://github.com/kalepail/stellar-raven
- **Connect (Claude Code)**: `claude mcp add --transport http stellar-raven "https://raven.stellar.buzz/mcp"`
- **Tools**: `search`, `execute`

## Oracles

#### Reflector Network
Expand Down