@pro-fa/expreszo-mcp-server
v0.1.0
Published
MCP (Model Context Protocol) server exposing the @pro-fa/expreszo language service to AI assistants.
Downloads
35
Readme
@pro-fa/expreszo-mcp-server
MCP (Model Context Protocol) server exposing the @pro-fa/expreszo language service to AI assistants.
Install
npm install @pro-fa/expreszo-mcp-server@pro-fa/expreszo is a peer dependency.
Run as a CLI
npx expreszo-mcpProgrammatic use
import { createMcpServer } from '@pro-fa/expreszo-mcp-server';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
const server = createMcpServer();
const transport = new StdioServerTransport();
await server.connect(transport);