PPAP Review Workbench
An MCP server that enables deterministic supplier quality engineer review of PPAP cases through structured state management, tools, and an interactive workbench UI within Langdock, with human approval authority.
README
PPAP Review Workbench (MCP App)
Deterministic Supplier Quality Engineer review workbench delivered as a genuine MCP server + MCP App UI for Langdock.
This is not a standalone dashboard. Langdock hosts the conversation and agent reasoning; this project stores structured PPAP case state and renders an interactive review UI via MCP Apps (ui://ppap-review/workbench.html).
What this project is
| Role | Responsibility |
|---|---|
| Langdock Agent | Document intelligence/reasoning: classify, extract, compare, draft preliminary findings |
| PPAP MCP Server | Authoritative state + tools (create_ppap_case, decisions, summary, …) |
| PPAP MCP App | Interactive SQE review UI rendered inside Langdock |
| Human SQE | Final decision authority — no autonomous approve/reject |
There are no LLM API calls inside this MCP project.
Architecture
Supplier PPAP Files
|
v
Langdock PPAP Agent
|
| create_ppap_case
v
PPAP MCP Server
|
| open_ppap_workbench
v
ui://ppap-review/workbench.html
|
v
Langdock embedded MCP App
|
| SQE decision
v
set_finding_decision
|
v
MCP Server
|
v
Langdock follow-up
Local development
cd ppap-review-mcp
npm install
npm run build
npm run serve
- Health: http://localhost:3001/health
- MCP: http://localhost:3001/mcp
Useful scripts:
npm run dev # watch UI + server
npm run dev:ui # mock browser preview (VITE_MOCK_MODE=true)
npm run typecheck
npm run test
npm run test:smoke
Demo case PP-10482 is seeded automatically on server start.
Mock UI preview
npm run dev:ui
Shows a Mock Development Mode badge and loads the seeded case without an MCP host. Production builds do not enable this by default.
Free hosting (recommended: Render)
Use Render Free Web Service for a public HTTPS MCP URL Langdock can reach.
- Go to https://dashboard.render.com and sign up (GitHub login).
- New → Web Service
- Connect repo:
AdarshRajDS/ppap-review-mcp - Settings:
- Runtime: Node
- Build Command:
npm ci --include=dev && npx vite build - Start Command:
npx tsx server/index.ts - Instance type: Free
- Health Check Path:
/health
- Deploy. Your URL will look like:
https://ppap-review-mcp.onrender.com - In Langdock → Integrations → MCP, enter:
https://ppap-review-mcp.onrender.com/mcpAuth: No Authentication (unless you setMCP_API_KEY)
Notes:
- Free tier sleeps after ~15 minutes idle; the first request can take 30–60s to wake.
- Netlify is only for static UI preview — do not use the Netlify URL in Langdock.
Public testing / tunnels
For quick local testing without Render, expose the local server with any temporary HTTPS tunnel (ngrok, Cloudflare Tunnel, localtunnel, etc.):
npm run serve
# then tunnel port 3001 → HTTPS
Example result:
https://example-public-host/mcp
Langdock setup
- Deploy/expose the MCP server through HTTPS.
- Open Langdock workspace settings.
- Go to Integrations.
- Add an MCP integration.
- Enter:
https://YOUR_HOST/mcp - Choose No Authentication for local/demo use, or API Key / Bearer auth when
MCP_API_KEYis set. - Test the connection.
- Enable these tools:
create_ppap_caseupdate_ppap_caseget_ppap_caseopen_ppap_workbenchset_finding_decisionadd_finding_commentset_review_statusget_review_summary
- Add the MCP integration/actions to the PPAP Review Agent.
- In the Agent instructions, tell the Agent to:
- create/update the PPAP case after analysis
- then call
open_ppap_workbench - use the returned human review state for later supplier communication
Exact connection URL format
https://YOUR_HOST/mcp
Local:
http://localhost:3001/mcp
Suggested test phrase
Review this PPAP submission. After analysis, create the PPAP case and open the PPAP Review Workbench for human SQE review.
Demo flow
- User: "Review this PPAP submission."
- Langdock analyzes documents.
- Langdock calls
create_ppap_casewith casePP-10482(or equivalent structured payload). - Langdock calls:
{ "caseId": "PP-10482" }
via open_ppap_workbench.
- The MCP App opens inside Langdock.
- SQE opens F-001, compares Drawing Revision C vs PSW Revision B.
- SQE selects Supplier Clarification and comments:
"Please submit a PSW matching the current drawing revision." - UI calls
set_finding_decisionthrough the MCP Apps bridge (notfetchto localhost). - User returns to chat:
"Prepare the supplier clarification email for everything I marked." - Langdock reasons over the human-reviewed case and drafts the email.
Security
- Set
MCP_API_KEYto requireAuthorization: Bearer <key>on/mcp. - Do not expose the API key to the React UI.
- Treat all PPAP payloads as confidential business data.
- No secrets are returned to the UI.
Docker
docker build -t ppap-review-mcp .
docker run --rm -p 3001:3001 -v ppap-data:/app/data -e PORT=3001 ppap-review-mcp
Optional auth:
docker run --rm -p 3001:3001 -e MCP_API_KEY=your-secret ppap-review-mcp
Environment
See .env.example:
PORT=3001
MCP_API_KEY=
DATA_DIR=./data
NODE_ENV=development
VITE_MOCK_MODE=false
Project layout
ppap-review-mcp/
server/ MCP + Express + persistence + tools
ui/ React MCP App (single-file Vite build)
data/ Local JSON store (server-authoritative)
tests/ Unit + MCP smoke tests
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.