@junct/jupiter
v0.1.0
Published
jupiter tools for AI agents — 4 tools, MCP + OpenAI compatible. Generated by Junct.
Downloads
14
Maintainers
Readme
@junct/jupiter
jupiter tools for AI agents — 4 tools
Generated by Junct. dex domain.
Install
npm install @junct/jupiterUsage — OpenAI
import { tools } from '@junct/jupiter';
import OpenAI from 'openai';
const client = new OpenAI();
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Query jupiter' }],
tools,
});Usage — MCP (Claude Desktop / Cursor)
Add to your MCP config:
{
"mcpServers": {
"jupiter": {
"url": "https://jupiter.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}Usage — Direct Call
import { callTool } from '@junct/jupiter';
const result = await callTool('quote_get', {});
console.log(result);Tools (4)
quote_get— quote — Request for a quote to be used inPOST /swapReturns: { inputMint: stswap_post— swap — Request for a base64-encoded unsigned swap transaction based on the `/quoswap_instructions_post— swap-instructions — Request for swap instructions that you can use from the quotprogram_id_to_label_get— program-id-to-label — Returns a hash, which key is the program id and value is t
Links
- Server: https://jupiter.mcp.junct.dev/mcp
- Dashboard: https://junct.dev/servers/jupiter
- All servers: https://junct.dev/servers
