stellar-mcplisted
Install: claude install-skill rylsherdamz-rgb/stellar-agentic-framework
# Stellar MCP Tools
Claude has direct access to the Stellar blockchain, filesystem, and GitHub through MCP servers configured in `.mcp.json`.
## Available MCP Servers
### `stellar-rpc`
Direct blockchain queries without leaving the conversation.
```
Tools available:
- get_account(address) → account balance, sequence, signers
- get_contract_data(id, key) → contract storage entry
- simulate_transaction(xdr) → simulate before submitting
- send_transaction(xdr) → submit signed transaction
- get_events(contractId) → query contract events
- get_ledger_entries(keys) → raw ledger entries
```
**Use for:**
- Checking account balances during development
- Verifying contract state after deployment
- Debugging transaction failures with simulation
- Querying contract events without writing frontend code
### `filesystem`
Read and write project files directly.
```
Tools available:
- read_file(path) → read file contents
- write_file(path) → write file contents
- list_directory(path) → list files in directory
- search_files(pattern) → search by glob
- get_file_info(path) → file metadata
```
### `github`
Manage repositories, PRs, issues, and code search.
```
Tools available:
- create_or_update_file → commit changes
- search_repositories → find repos
- get_issue → read issue details
- create_pull_request → open PRs
- list_issues → browse open issues
```
### `playwright`
Run browser-based e2e tests for Stellar dApps.
```
Tools a