Injective trading market data
Skill ChiJian28/Touchline/.agents/skills/injective-trading-market-data
Access real-time market data for Injective perpetual futures markets. Query oracle prices, list all active markets with metadata (tick size, min notional, max leverage), and retrieve current spread and funding information. Requires the Injective MCP server to be connected.From its SKILL.md
npx -y skills add ChiJian28/Touchline --skill injective-trading-market-dataAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.9 KB, 636 tokens by cl100k_base, as published. Nobody here has run it
Injective Trading Market Data, Skill Guide
Query live market data from Injective's on-chain perpetuals exchange. All data is pulled from the Injective Indexer (gRPC) and is real-time.
When to apply
Sample prompts: ./references/sample-prompts.md
Important
Notes
- Prices are in USDT with 6 decimal places internally; returned as human-readable floats.
- Oracle prices are aggregated from Band Protocol and Pyth Network feeds.
- Funding rates are not yet exposed via MCP tools - check Helix UI for funding.
- Market data is cached in-process for 30 seconds to reduce latency on repeated calls.
minPriceTickSizefrom the indexer is in chain format. For USDT markets, divide by 10^6 to get the human-readable tick size.minQuantityTickSizeis already in human format (not scaled by quote decimals).
Market symbols
See: ./references/market-symbols.md
Use market_list for the complete current set, as new markets are added through Injective governance.
Activities
List all active perpetual futures markets with full metadata
market_list
Returns per market:
symbol- e.g. BTC, ETH, INJmarketId- 0x... hex ID used on-chainoraclePrice- current oracle mark price (USDT)minQuantityTickSize- minimum order sizeminPriceTickSize- minimum price incrementinitialMarginRatio- minimum margin (1/maxLeverage)maintenanceMarginRatiomakerFeeRate/takerFeeRate
Get the current oracle price for a single market.
market_price
symbol: BTC ← or ETH, INJ, SOL, ATOM, etc.
Returns: { symbol, price, marketId }
"What markets are available?"
market_list → filter/display by symbol
"What's the current BTC price?"
market_price BTC
"What's the max leverage for ETH?"
market_list → find ETH → compute 1 / initialMarginRatio
(e.g. initialMarginRatio 0.05 → 20x max leverage)
"Is the ETH market liquid enough for a $10,000 position?"
market_list → check ETH minQuantityTickSize and current oracle price
Injective uses an on-chain order book. For large orders, use limit orders or split into multiple market orders to reduce slippage.
Related skills
injective-mcp-servers
If these skills are not available, selectively run the following commands to install them:
npx skills add InjectiveLabs/agent-skills --skill injective-mcp-servers
Prerequisites
- Injective MCP server must be running
- User prompts should be issued from an AI tool that is configured to talk to the Injective MCP server
What ships with it: 5 files
4.6 KB alongside SKILL.md
references/
- market-symbols.md147 B
- sample-prompts.md542 B
- LICENSE559 B
- README.md1.0 KB
- TERMS_OF_USE2.3 KB