@junct/wormhole
v0.1.0
Published
wormhole tools for AI agents — 69 tools, MCP + OpenAI compatible. Generated by Junct.
Maintainers
Readme
@junct/wormhole
wormhole tools for AI agents — 69 tools
Generated by Junct. analytics domain.
Install
npm install @junct/wormholeUsage — OpenAI
import { tools } from '@junct/wormhole';
import OpenAI from 'openai';
const client = new OpenAI();
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Query wormhole' }],
tools,
});Usage — MCP (Claude Desktop / Cursor)
Add to your MCP config:
{
"mcpServers": {
"wormhole": {
"url": "https://wormhole.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}Usage — Direct Call
import { callTool } from '@junct/wormhole';
const result = await callTool('find_address_by_id', {});
console.log(result);Tools (69)
find_address_by_id— Lookup an address — Lookup an address Returns: { data: { vaas: { digest: string,application_activity— Search for a specific period of time the number of transactions and the volume pfind_global_transaction_by_id— Find a global transaction by VAA ID Global transactions is a logical associationgovernor_config— Returns governor configuration for all guardians. — Returns governor configuratigovernor_config_by_guardian_address— Returns governor configuration for a given guardian. — Returns governor configurgovernor_enqueued_vaas— Returns enqueued VAAs for each blockchain. — Returns enqueued VAAs for each blocguardians_enqueued_vaas_by_chain— Returns all enqueued VAAs for a given blockchain. — Returns all enqueued VAAs fogovernor_notional_limit— Returns the governor limit for all blockchains. — Returns the governor limit forgovernor_notional_available— Returns the amount of notional value available for each blockchain. — Returns thgovernor_notional_available_by_chain— Returns the amount of notional value available for a given blockchain. — Returnsgovernor_notional_limit_detail— Returns the detailed notional limit for all blockchains. — Returns the detailedgovernor_notional_limit_detail_by_chain— Returns the detailed notional limit available for a given blockchain. — Returnsgovernor_max_notional_available_by_chain— Returns the maximum amount of notional value available for a given blockchain. —governor_status— Returns the governor status for all guardians. — Returns the governor status forgovernor_status_by_guardian_address— Returns the governor status for a given guardian. — Returns the governor status- ... and 54 more
Links
- Server: https://wormhole.mcp.junct.dev/mcp
- Dashboard: https://junct.dev/servers/wormhole
- All servers: https://junct.dev/servers
