@junct/lido
v0.1.0
Published
lido tools for AI agents — 6 tools, MCP + OpenAI compatible. Generated by Junct.
Maintainers
Readme
@junct/lido
lido tools for AI agents — 6 tools
Generated by Junct. vault domain.
Install
npm install @junct/lidoUsage — OpenAI
import { tools } from '@junct/lido';
import OpenAI from 'openai';
const client = new OpenAI();
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Query lido' }],
tools,
});Usage — MCP (Claude Desktop / Cursor)
Add to your MCP config:
{
"mcpServers": {
"lido": {
"url": "https://lido.mcp.junct.dev/mcp",
"transport": "streamable-http"
}
}
}Usage — Direct Call
import { callTool } from '@junct/lido';
const result = await callTool('proxyType', {});
console.log(result);Tools (6)
proxyType— Calls proxyType(). Read-only — does not modify contract state. Unrestricted — anisDepositable— Calls isDepositable(). Read-only — does not modify contract state. Unrestrictedimplementation— Calls implementation(). Read-only — does not modify contract state. UnrestrictedappId— Calls appId(). Read-only — does not modify contract state. Unrestricted — any adkernel— Calls kernel(). Read-only — does not modify contract state. Unrestricted — any aProxyDeposit— Event emitted by the contract. Subscribe via log filters.
Links
- Server: https://lido.mcp.junct.dev/mcp
- Dashboard: https://junct.dev/servers/lido
- All servers: https://junct.dev/servers
