@junct/aave
v0.1.0
Published
aave tools for AI agents — 6 tools, MCP + OpenAI compatible. Generated by Junct.
Downloads
67
Maintainers
Readme
@junct/aave
aave tools for AI agents — 6 tools
Generated by Junct. analytics domain.
Install
npm install @junct/aaveUsage — OpenAI
import { tools } from '@junct/aave';
import OpenAI from 'openai';
const client = new OpenAI();
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Query aave' }],
tools,
});Usage — MCP (Claude Desktop / Cursor)
Add to your MCP config:
{
"mcpServers": {
"aave": {
"url": "https://aave.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}Usage — Direct Call
import { callTool } from '@junct/aave';
const result = await callTool('admin', {});
console.log(result);Tools (6)
admin— Calls admin(). Write function — may have access control restrictions (e.g. onlyOimplementation— Calls implementation(). Write function — may have access control restrictions (einitialize— Calls initialize(_logic: string, _data: string). Requires ETH value to be sent wupgradeTo— Calls upgradeTo(newImplementation: string). Write function — may have access conupgradeToAndCall— Calls upgradeToAndCall(newImplementation: string, data: string). Requires ETH vaUpgraded— Event emitted by the contract. Indexed fields (filterable): implementation. Subs
Links
- Server: https://aave.mcp.junct.dev/mcp
- Dashboard: https://junct.dev/servers/aave
- All servers: https://junct.dev/servers
