@dav3/mcp-dynamics365-server
Version:
Generic MCP server for Dynamics 365 CRM operations (AI-generated side project with limited maintenance)
12 lines (11 loc) • 425 B
JavaScript
import { startHttpTransport } from "./http-transport.js";
import { startStdioTransport } from "./stdio-transport.js";
export async function startTransport(server, transport = 'stdio', port = 3300, host = 'localhost') {
if (transport === 'http') {
await startHttpTransport(server, port, host);
}
else {
await startStdioTransport(server);
}
}
export { startHttpTransport, startStdioTransport };