Skip to main content
Glama

Sitecore Send

cli.ts729 B
import { Command } from 'commander'; import { version } from '../package.json'; import { start } from './http'; import { stdio } from './stdio'; import dotenv from 'dotenv'; import path from 'path'; const program = new Command('send-mcp'); dotenv.config(); dotenv.config({ path: path.resolve(process.cwd(), '.env.local'), override: true }); program.command('http') .option('--port <number>', 'port number', '3000') .description('Start the MCP Streamable HTTP Server') .action(async (options) => { start(options.port); }); program.command('stdio', { isDefault: true }) .description('Start MCP server (stdio transport)') .action(async () => { await stdio() }); program.version(version); program.parse();

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/izharikov/send-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server