Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 1.07 KB

File metadata and controls

35 lines (25 loc) · 1.07 KB

schepta-mcp

MCP server (MCP App / Ext Apps) that exposes Schepta form tools: get_form_schema, validate_schema, and preview_form. Use it as a custom connector in Claude to build, validate, and preview Schepta forms in chat.

Install

npm install -g schepta-mcp
# or
npx schepta-mcp

Run

  • HTTP (default) — server listens on PORT (default 3001). Endpoint: http://localhost:3001/mcp.
    schepta-mcp
    # or after npm run build
    npm start
  • stdio — for local MCP clients that use stdio transport:
    schepta-mcp --stdio

Deploy

Deploy to a public URL so Claude can use it as a remote connector (e.g. https://mcp.schepta.org).

  • Render: use the included render.yaml (connect repo, then add custom domain in Render).
  • Docker: docker build -t schepta-mcp . && docker run -p 3001:3001 schepta-mcp.

Docs

Full documentation and connector setup: https://schepta.org.