We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elcukro/bank-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
connect.ts•384 B
/**
* `bank-mcp connect` — now delegates to the unified `init` flow.
*
* Kept for backward compatibility. All guided setup is handled by `init`.
*/
import * as p from "@clack/prompts";
import { runInit } from "./init.js";
export async function runConnect(): Promise<void> {
p.log.warn("Note: 'connect' is now part of 'init'. Launching guided setup...");
await runInit();
}