orquestra: Skill for Claude Code

.claude/skills/orquestra-mcp-tools/SKILL.md

orquestra-mcp-tools is a skill for Claude Code from berkayoztunc/orquestra. It costs 130 tokens per session (1,519 once invoked), scanned A, original, MIT.

A reference guide to the eight tools provided by the Orquestra MCP server for Solana programs. It documents their inputs, returned data, and example calls.

In plain words
What is it for?
It is for looking up how to find programs, list instructions, resolve accounts, build or simulate transactions, and use the other documented Orquestra tools.
Why use it?
It helps an agent use the correct project IDs, parameters, and tool sequence instead of guessing how the server works.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is berkayoztunc/orquestra's own configuration. It tells Claude Code how to work on orquestra itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything orquestra configures →

Reuse

Borrowing it

Nothing to install: this file belongs to berkayoztunc/orquestra. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/berkayoztunc/orquestra/main/.claude/skills/orquestra-mcp-tools/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/berkayoztunc/orquestra

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for orquestra-mcp-tools

README.md
[![agentmods](https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-tools/github.svg)](https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-tools)
Your own site
<a href="https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-tools"><img src="https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-tools/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for orquestra-mcp-tools

Your own site · 80×15
<a href="https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-tools"><img src="https://agentmods.dev/badge/skills/berkayoztunc/orquestra/orquestra-mcp-tools.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,519 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 15
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00130 $0.01519
Opus 5 $0.00065 $0.00759
Sonnet 5 $0.00026 $0.00304
Haiku 4.5 $0.00013 $0.00152

Measured 11d ago against content hash 654ab1b36376, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

orquestra-mcp-tools scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/orquestra-mcp-tools/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orquestra MCP — Tool Reference

MCP server: https://api.orquestra.dev/mcp

All tools accept and return JSON. projectId is the Orquestra internal ID returned by search_programs (NOT the Solana program address).


1. search_programs

Find Solana programs by name, keyword, or on-chain program ID.

Inputs

Field Type Required Description
query string Program name, keyword, or base58 program address
limit number Max results (default: 10)

Example

search_programs({ query: "marinade" })
search_programs({ query: "JUP4Fb2cqiRUcaTHdrPC8h2gNsA2ETXiPDD33WcGuJB" })

Returns — list of matches, each with:

  • id — Orquestra projectId (use this in all other tools)
  • name — program name
  • program_id — on-chain Solana address
  • description — protocol summary

2. list_instructions

List all instructions a program exposes — names, arguments, and required accounts.

Inputs

Field Type Required Description
projectId string Orquestra project ID from search_programs

Returns — Markdown table per instruction:

  • Instruction name
  • Args: name, type
  • Accounts: name, writable flag, signer flag

3. build_instruction

Build an unsigned Solana transaction. Returns base64-encoded wire transaction.

Inputs

Field Type Required Description
projectId string Orquestra project ID
instructionName string Exact instruction name (case-sensitive)
accounts object Map of accountName → base58 pubkey
args object Map of argName → value (types must match IDL)
feePayer string Base58 pubkey of fee payer wallet
network string "mainnet-beta" (default) | "devnet"

Returns

  • transaction — base64-encoded unsigned wire transaction
  • riskLevel"LOW" | "MEDIUM" | "HIGH"
  • riskReasons — string[] explaining the risk
  • estimatedFee — lamports
  • accounts — resolved account list with pubkeys + flags

Read the full file on GitHub · 192 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 192 lines · 130 tokens per session scan A 654ab1b36376

Subscribe to this mod's changes

orquestra-mcp-tools is a skill published in the GitHub repository berkayoztunc/orquestra (23 stars, last pushed 24d ago), licensed MIT. It adds 130 tokens to every session and 1,519 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

solana-dev

Use when user asks to "build a Solana dapp", "write an Anchor program", "create a token", "debug Solana errors", "set up wallet connection", "test my Solana program", "fuzz my Solana program", "deploy to devnet", "send a v1 transaction", "support larger transactions", "fix maxSupportedTransactionVersion", or "explain…

solana-foundation/solana-dev-skill · 250 tokens

code-navigation

Rapid, focused navigation to locate definitions/usages and map the impact of proposed changes.

pilinux/gorest · 20 tokens

alchemy-agentic-gateway

Use when accessing Alchemy APIs for RPC calls, token balances, NFT metadata, asset transfers, transaction simulation, or Alchemy-specific features. Also use when the user mentions "SIWE", "SIWS", "x402", "MPP", "mppx", or "agentic gateway" — this skill covers wallet-based auth flows for Alchemy's x402 and MPP…

moonpay/skills · 101 tokens

alchemy-api

Integrates Alchemy blockchain APIs using an API key. Requires $ALCHEMYAPIKEY to be set; if unavailable, use the alchemy-agentic-gateway skill instead. Use when user asks about EVM JSON-RPC calls, token balances, NFT ownership or metadata, transfer history, token prices, portfolio data, transaction simulation…

moonpay/skills · 100 tokens

slv-validator

Ansible playbooks and Jinja2 templates for deploying and managing Solana validators (mainnet and testnet).

ValidatorsDAO/slv · 0 tokens

slv-grpc-geyser

Ansible playbooks and Jinja2 templates for deploying and managing Solana gRPC Geyser streaming nodes.

ValidatorsDAO/slv · 0 tokens