What It Is
The Nile Markets OpenClaw skill is an agentskills.io-format skill published on ClawHub. It provides read-only access to the Nile Markets protocol by delegating all queries to the Nile MCP server atmcp.nilemarkets.com. The skill exposes 12 MCP tools for querying pool state, positions, oracle prices, account balances, and fee analytics.
Installation
Install the ClawHub CLI globally, then install the skill:Prerequisites
Set the MCP server URL as an environment variable before using the skill:.bashrc, .zshrc, etc.) for persistence.
Available Tools (12)
All tools are read-only. They return JSON responses withprotocol (name + version), network, and data fields. Tools sourcing data from the subgraph include _meta.lastIndexedBlock for freshness verification.
Pool and Protocol
Positions
Oracle and Pricing
Accounts and Fees
Simulation
Example Queries
Ask your agent questions naturally once the skill is loaded:- “What’s the current Nile Markets pool utilization and share price?” — uses
get_pool_state - “Show me all open positions for 0x1234…abcd” — uses
get_positionswithstatus: "OPEN" - “What are the EUR/USD forward prices for all tenors?” — uses
get_forward_pricewithout a tenor filter - “Is the Nile Markets protocol operating normally?” — uses
get_protocol_mode - “How much margin for a 1000 USDC long 1-week position?” — uses
simulate_open_position - “Find all open short positions above 5000 USDC notional” — uses
search_positionswith filters
Verify Installation
Confirm the skill is installed and inspect its metadata:Limitations
The OpenClaw skill is read-only. It cannot:- Open, close, or modify positions onchain
- Deposit or withdraw margin or vault funds
- Approve token spending or mint test tokens
- Manage wallets, private keys, or sign transactions
The skill connects to the Nile Markets MCP server on Ethereum Sepolia. All protocol data is testnet-only with no real-world value. Tool schemas and response formats may change without notice during the M2 milestone.