Pique Signal
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| STOP_LOSS_PCT | No | Auto stop-loss percentage | 15 |
| TAKE_PROFIT_PCT | No | Auto take-profit percentage | 50 |
| MAX_EXPOSURE_SOL | No | Max total open exposure | 5.0 |
| MAX_POSITION_SOL | No | Max SOL per trade | 0.5 |
| MIN_LIQUIDITY_USD | No | Min pool liquidity to trade | 10000 |
| PAPER_BALANCE_SOL | No | Starting paper balance | 10 |
| PIQUESIGNAL_API_KEY | Yes | Your API key | |
| PIQUESIGNAL_API_URL | No | API endpoint | https://piquesignal.xyz |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_signalsA | Fetch recent trading signals from Pique Signal. Returns scored Solana token alerts with on-chain safety data, market cap, liquidity, holder metrics, and signal strength. |
| paper_buyA | Execute a paper (simulated) buy order for a Solana token. Uses real-time prices from Jupiter/DexScreener. Risk manager enforces position limits, exposure caps, and minimum liquidity. |
| paper_sellA | Sell an open paper position. Fetches real-time exit price and calculates P&L. |
| get_positionsC | View all open paper positions with live prices. Automatically triggers stop-loss or take-profit sells if price thresholds are hit. |
| get_portfolioA | Get full paper trading portfolio summary: balance, P&L, win rate, trade history, and risk configuration. |
| get_priceA | Get the current price of any Solana token in SOL. Checks Jupiter first, falls back to DexScreener. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: portfolio overview, positions, price, signals, buy, and sell. No overlap or ambiguity.
All tools follow a consistent verb_noun snake_case pattern (e.g., get_portfolio, paper_buy), making it predictable for an agent.
6 tools is well-scoped for a paper trading server with signals. It covers essential operations without unnecessary clutter.
Core paper trading lifecycle is covered: view portfolio, positions, price, signals, buy, sell. Minor gaps like cancel order or limit order are absent, but the set is functional.