mcpbeat Sign in

Tres Ledger Link Skill for Claude

> Build a TRES Finance dashboard ledger URL (Transactions tab) with a precise filter set — date range, wallets, assets, tags, status, amount, and more — so it can be shared with a customer or reused. Use whenever the user asks for a "ledger link", "dashboard link", "filter URL", or "send <customer> a link to <some filtered view>". Scoped to the Transactions tab only (not Accounting, Roll Forward, Pivot Tables, Cost Basis, or Trial Balances).

2k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
336
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/anthropics/claude-plugins-community --skill tres-ledger-link

The instruction itself

14 sections, as written by the author

Your job is to produce a working TRES Finance dashboard URL that opens the **Transactions tab of the

ledger** with a precise filter set applied, so the user can share it with a customer (or use it

themselves).

This skill is scoped to the Transactions tab only. If the user asks for a link to Accounting,

Roll Forward, Pivot Tables, Cost Basis, or Trial Balances — stop and tell them this skill does not

cover those tabs.


Step 1 — Resolve the org subdomain

The dashboard URL is https://<org-subdomain>.tres.finance/ledger.

Resolve <org-subdomain> from the MCP get_viewer query (use the returned orgName). **Do not ask

the user.**

query { viewer { orgName } }

State the subdomain you used in your final message so the user can correct it in one shot if it is

wrong.


Step 2 — Collect the filters the user wants

Read the filters out of the user's request in plain English (date range, wallets, assets, tags,

status, etc.). If a filter is ambiguous (e.g. "USDC" when the org has multiple USDC variants, or "Q1"

without a year), ask before generating. A wrong value silently produces a broken / empty view.

Only include filters the user explicitly asked for. The dashboard fills in defaults for everything

else — extra params just add noise.


Step 3 — Build the URL

Base path is always:

https://<org-subdomain>.tres.finance/ledger

No path segment after /ledger (that is the Transactions tab).

Append ? and the query string built from the rules below. URL-encode every value (spaces → %20).

Inside a single value, encode commas; between distinct array items, a comma is the literal delimiter.

3.1 Date & pagination

| Param | Format / values | Notes |

|------------|-----------------|-------|

| fromDate | YYYY-MM-DD | UTC date |

| toDate | YYYY-MM-DD | UTC date |

| dateType | Month to date, Year to date, Last 30 days, Last month, Before this month, Custom date, All time, Year, Quarters | URL-encode spaces. Omit if Last 30 days (default). For an arbitrary fromDate/toDate range, use Custom date. |

| page | integer | Omit if 1. |

| pageSize | integer | Omit if 20 (default). |

If dateType=All%20time, fromDate / toDate are ignored — do not include them.

3.2 Multi-select array filters (comma-joined IDs)

| Param | What goes in it |

|-------|-----------------|

| internalAccounts | numeric database ID of org-owned wallets |

| tags | wallet group IDs, or no-label for unlabeled |

| thirdPartyAccounts | raw address string of an external account (sender/receiver identifier on a sub-transaction — not necessarily a named contact in the system) |

| customNameLabelTags | contact group IDs |

| addresses | raw unidentified address strings |

| assetClasses | asset class enum IDs (e.g. CRYPTO, FIAT, NFT) |

| assets | asset IDs |

| activities | tag IDs uppercase (e.g. SPAM, STAKING), or no-label |

| automations | automation IDs |

| platforms | platform names lowercased (e.g. ethereum, bitcoin — NOT the uppercase enum) |

| actions | financial action enum names (e.g. SEND, RECEIVE) |

| functions | decoded function names |

| applications | application IDs |

| protocols | protocol IDs |

| methodIds | 4-byte hex method IDs (0xa9059cbb) |

| transactionHash | tx hash(es) |

| transactionView | readyPending (default), onlyReady, onlyPending, onlyDeleted |

| transactionType | any of isManual, onlyPlug |

| filterByBookmark | bookmark types lowercased |

| missingCounterMatchedTransfers | all (default), false (has counter transfer), true (no counter transfer) |

| balanceFactor | 1 (Inflow), -1 (Outflow). Typically a single value. |

| amountAsset | single asset ID (pair with amountBetween) |

If you do not know the exact ID for a multi-select value, query the BFF via the execute MCP tool

first to look it up. Do not guess.

3.3 Range filter

| Param | Format | Notes |

|-------|--------|-------|

| amountBetween | <min>,<max> | Either side may be empty: 100,500 (range), 100, (≥100), ,500 (≤500). The single comma is required. |

3.4 Boolean filters (include only when true)

showSpam, missingFiat, failedTransactions, nonTaxableType, missingCostBasis,

internalTransactions, ignoreFee

Example: ?showSpam=true&missingFiat=true. Never emit =falsefalse is the default.

3.5 Notes / radio-with-input

| Param | Values |

|-------|--------|

| commentContains | 1 = has notes, -1 = no notes, 0 = show all (omit), or any text string to search note content |

3.6 Other singles

| Param | Format |

|-------|--------|

| savedFilters | saved-filter ID (single value) |

| description | single string |

| globalSearch | single string |


Step 4 — Validate before sending

Walk the URL through this checklist. If any rule fails, fix it before handing it over.

  • Path is exactly /ledger. No tab suffix, no ?id=....
  • fromDate / toDate paired with dateType=Custom%20date (or dateType omitted), never with

Last%2030%20days or All%20time.

  • No =false on any boolean.
  • Multi-select values are comma-joined, never repeated keys (?platforms=ethereum,bsc, never

?platforms=ethereum&platforms=bsc).

  • platforms values are lowercased (ethereum, not ETHEREUM). All other enum IDs match the

schema (SPAM, not Spam; CRYPTO, not crypto).

  • amountBetween always has exactly one comma, even when one side is open.
  • If activities includes SPAM, also set showSpam=true so the link is self-contained.
  • If transactionHash is set, the dashboard ignores any date filter — warn the user when you also

see a date in their request.

  • Spaces are URL-encoded (Custom dateCustom%20date).

10. Only filters the user asked for are included.


Step 5 — Hand it over

Send the URL on its own line so it is easy to copy. Briefly state which filters are encoded (and which

subdomain you used) so the user can sanity-check before forwarding to the customer.

Example handoff:

> Built for org <subdomain>: filters are platform=ethereum, activities=SPAM, fromDate/toDate Apr

> 2026 (Custom date), showSpam=true.

>

> https://<subdomain>.tres.finance/ledger?fromDate=2026-04-01&toDate=2026-04-30&dateType=Custom%20date&platforms=ethereum&activities=SPAM&showSpam=true


Worked examples

Last month's Ethereum SPAM transactions:

https://<subdomain>.tres.finance/ledger?fromDate=2026-04-01&toDate=2026-04-30&dateType=Custom%20date&platforms=ethereum&activities=SPAM&showSpam=true

All-time view of two specific wallets:

https://<subdomain>.tres.finance/ledger?dateType=All%20time&internalAccounts=12345,67890

USD-only large transfers ≥ 50k:

https://<subdomain>.tres.finance/ledger?assetClasses=FIAT&amountBetween=50000,&amountAsset=USD

Failed transactions missing fiat in Q1 2026:

https://<subdomain>.tres.finance/ledger?fromDate=2026-01-01&toDate=2026-03-31&dateType=Custom%20date&failedTransactions=true&missingFiat=true

A specific saved filter:

https://<subdomain>.tres.finance/ledger?savedFilters=12345

Rules

  • This skill is for general, ad-hoc filtered views the user describes in plain English. To pin a

single just-created transaction so a pending/backdated row shows immediately, set transactionHash

with dateType=All%20time.

  • Never hand-craft a ledger URL outside this skill — use it whenever the user asks for a ledger /

dashboard / filter link.

  • Never include =false on a boolean filter.
  • Never repeat a key (?x=a&x=b) — comma-join into one value.
  • Never use display names where the dashboard expects enum IDs.
  • Always validate against the Step 4 checklist before responding.
  • Always state the subdomain and filters used in your handoff message.

Other skills for the same job

different authors, same section of the catalogue
Invoice Organizer
by frostant
×5

Automatically organizes invoices and receipts for tax preparation by reading messy files, extracting key information, renaming them consistently, and sorting them into logical folders. Turns hours of manual bookkeeping into minutes of automated organization.

3k tokens
Backtest Expert
by BaggaT236
×3

Expert guidance for systematic backtesting of trading strategies. Use when developing, testing, stress-testing, or validating quantitative trading strategies. Covers "beating ideas to death" methodology, parameter robustness testing, slippage modeling, bias prevention, and interpreting backtest results. Applicable when user asks about backtesting, strategy validation, robustness testing, avoiding overfitting, or systematic trading development.

15k tokens scripts
Earnings Calendar
by nicepkg
×2

This skill retrieves upcoming earnings announcements for US stocks using the Financial Modeling Prep (FMP) API. Use this when the user requests earnings calendar data, wants to know which companies are reporting earnings in the upcoming week, or needs a weekly earnings review. The skill focuses on mid-cap and above companies (over $2B market cap) that have significant market impact, organizing the data by date and timing in a clean markdown table format. Supports multiple environments (CLI, Desktop, Web) with flexible API key management.

17k tokens scripts
Agentic Wallet
by coinbase
vendor ×2

Crypto wallet operations via the awal CLI — sign in, check balances, send USDC/ETH/POL/SOL, trade tokens, fund the wallet, and use the x402 payment protocol to discover paid services, pay for API calls, monetize an API, or query onchain data. Use whenever the user mentions signing in, login, authentication, wallet status, balance, address, sending money, paying someone, transferring tokens, ENS names, swapping/trading/converting tokens, funding/topping up/onramp, USDC, ETH, POL, SOL, the x402 bazaar, paid APIs, monetizing an endpoint, or querying onchain data on Base.

14k tokens
Alpha Vantage
by christophacham
×2

Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.

13k tokens
Braintree Automation
by christophacham
×2

Braintree Automation: manage payment processing via Stripe-compatible tools for customers, subscriptions, payment methods, and transactions

2k tokens needs MCP
Coinbase Automation
by christophacham
×2

Coinbase Automation: list and manage cryptocurrency wallets, accounts, and portfolio data via Coinbase CDP SDK

834 tokens needs MCP
Edgartools
by christophacham
×2

Python library for accessing, analyzing, and extracting data from SEC EDGAR filings. Use when working with SEC filings, financial statements (income statement, balance sheet, cash flow), XBRL financial data, insider trading (Form 4), institutional holdings (13F), company financials, annual/quarterly reports (10-K, 10-Q), proxy statements (DEF 14A), 8-K current events, company screening by ticker/CIK/industry, multi-period financial analysis, or any SEC regulatory filings.

15k tokens

How to use it

Copy the folder

Take anthropics/tres-ledger-link from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.