@mcp3/dex-screener
Version:
DexScreener API integration for MCP3
12 lines • 462 B
JavaScript
export { registerTools } from "./tools/index.js";
export * from "./client.js";
/**
* Register DexScreener global options with the Registration
* @param registration The Registration instance
*/
export function registerGlobalOptions(registration) {
registration.addGlobalOption((command) => {
command.option("--dexscreener-endpoint <endpoint>", "DexScreener API endpoint", "https://api.dexscreener.com");
});
}
//# sourceMappingURL=index.js.map