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.
curl -O https://raw.githubusercontent.com/berkayoztunc/orquestra/main/.claude/skills/orquestra-mcp-tools/SKILL.mdgit clone --depth 1 https://github.com/berkayoztunc/orquestraWrote 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.
[](https://agentmods.dev/skills/berkayoztunc/orquestra/orquestra-mcp-tools)<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.
<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>- NVIDIA SkillSpector warn
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.
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.
| Model | Per session | Once 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 |
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.
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 nameprogram_id— on-chain Solana addressdescription— 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 transactionriskLevel—"LOW"|"MEDIUM"|"HIGH"riskReasons— string[] explaining the riskestimatedFee— lamportsaccounts— resolved account list with pubkeys + flags
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.
- 11d ago First seen · 192 lines · 130 tokens per session scan A 654ab1b36376
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.
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…
code-navigation
Rapid, focused navigation to locate definitions/usages and map the impact of proposed changes.
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…
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…
slv-validator
Ansible playbooks and Jinja2 templates for deploying and managing Solana validators (mainnet and testnet).
slv-grpc-geyser
Ansible playbooks and Jinja2 templates for deploying and managing Solana gRPC Geyser streaming nodes.