# ToolBooth

Toolbooth eliminates API key friction for AI agents. Instead of managing

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add toolbooth/sol402

# Browse available tools
npx -y @smithery/cli@latest tool list toolbooth/sol402

# Get full schema for a tool
npx -y @smithery/cli@latest tool get toolbooth/sol402 token_price

# Call a tool
npx -y @smithery/cli@latest tool call toolbooth/sol402 token_price '{}'
```

## Direct MCP Connection

Endpoint: `https://sol402--toolbooth.run.tools`

## Tools (15)

- `token_price` — Get current USD price for any Solana token by mint address. Returns price, symbol, and supply info. Costs $0.0005 USDC …
- `wallet_profile` — Get a complete wallet profile: SOL balance, all token holdings with USD values, NFT count, and top holdings ranked by v…
- `token_risk_score` — Analyze a Solana token's risk profile. Returns a 0-100 risk score based on holder concentration, liquidity, and distrib…
- `transaction_parse` — Parse a Solana transaction into human-readable format. Returns type, transfers, swaps, fees, and a plain-English descri…
- `whale_alert` — Scan a wallet's recent transaction history for large movements. Returns whale-sized transfers and token movements. Cost…
- `dex_liquidity` — Check DEX liquidity depth for a Solana token. Returns pool info, TVL estimates, and a liquidity rating (DEEP/MODERATE/S…
- `token_holders` — Get full holder list for a Solana token with concentration analysis. Returns top holders, balances, % of supply, and di…
- `wallet_pnl` — Calculate realized and unrealized PnL for a Solana wallet's token trades. Analyzes swap history to compute profit/loss …
- `copy_trade_signals` — Analyze a wallet's recent swap activity for copy trading. Returns active positions, buy/sell patterns, entry prices, an…
- `web_search` — Search the web via Google. Returns titles, URLs, and snippets for any query. Useful for research, fact-checking, and fi…
- `web_scrape` — Scrape any webpage and return clean text content. Strips HTML, scripts, and navigation. Returns the main content as rea…
- `crypto_price` — Get current price, market cap, volume, and 24h/7d change for any cryptocurrency. Supports search by name, symbol, or Co…
- `weather` — Get current weather and 7-day forecast for any location by latitude/longitude. Returns temperature, humidity, wind, pre…
- `news_headlines` — Search Google News for current headlines on any topic. Returns titles, sources, links, dates, and snippets. Costs $0.00…
- `compute_math` — Evaluate mathematical expressions. Supports arithmetic, algebra, unit conversions, trigonometry, matrices, and more. Co…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get toolbooth/sol402 <tool-name>
```
