@junct/hyperliquid
v0.1.0
Published
hyperliquid tools for AI agents — 2 tools, MCP + OpenAI compatible. Generated by Junct.
Downloads
9
Maintainers
Readme
@junct/hyperliquid
hyperliquid tools for AI agents — 2 tools
Generated by Junct. analytics domain.
Install
npm install @junct/hyperliquidUsage — OpenAI
import { tools } from '@junct/hyperliquid';
import OpenAI from 'openai';
const client = new OpenAI();
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Query hyperliquid' }],
tools,
});Usage — MCP (Claude Desktop / Cursor)
Add to your MCP config:
{
"mcpServers": {
"hyperliquid": {
"url": "https://hyperliquid.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}Usage — Direct Call
import { callTool } from '@junct/hyperliquid';
const result = await callTool('query_info', {});
console.log(result);Tools (2)
query_info— Query information endpoint — Unified endpoint for querying various types of infoexecute_exchange— Execute exchange operations — Unified endpoint for all trading and account opera
Links
- Server: https://hyperliquid.mcp.junct.dev/mcp
- Dashboard: https://junct.dev/servers/hyperliquid
- All servers: https://junct.dev/servers
