Skip to main content
Glama
dw18031988

Design System MCP Server

by dw18031988

Design System MCP Server

Self-hosted MCP server for connecting ChatGPT / Workspace Agents to a Design System backend and guarded GitHub workflows.

What this provides

This server supports two integration modes:

Mode

Endpoint

Use case

MCP native connector

/mcp

ChatGPT Apps & Connectors / MCP connector

REST wrapper

/api/...

Custom GPT Actions using OpenAPI YAML

Design System MCP tools:

Tool

Type

Purpose

ds_ping

read

Health check from ChatGPT

ds_get_request

read

Fetch design request context by request_id

ds_submit_agent_result

write

Submit a completed agent review result back to the system

GitHub MCP tools:

Tool

Type

Purpose

github_get_repo

read

Read allowlisted repo metadata

github_read_file

read

Read UTF-8 file content

github_list_tree

read

List repository tree for a branch, tag, or commit ref

github_read_binary_file

read

Read file bytes as base64 for binary governance/package files

github_generate_integrity_artifacts

read

Generate TREE.txt and SHA256SUMS.txt server-side without returning raw archives

github_create_branch

write

Create guarded branch from base branch

github_upsert_file

write

Create/update file on guarded non-main branch

github_create_pr

write

Create pull request

github_get_workflow_runs

read

Read recent GitHub Actions workflow runs

github_comment_pr

write

Comment on pull request

REST endpoints for GPT Actions:

Method

Path

Purpose

GET

/health

Health check

GET

/api/design-requests/{request_id}

Fetch design request by ID

POST

/api/agent-results

Submit final agent review result

GET

/api/github/repos/{owner}/{repo}

Read repo metadata

GET

/api/github/repos/{owner}/{repo}/files?path=...&ref=...

Read UTF-8 file

GET

/api/github/repos/{owner}/{repo}/tree?ref=...&recursive=1

List repository tree

GET

/api/github/repos/{owner}/{repo}/binary-file?path=...&ref=...

Read file as base64 bytes

GET

/api/github/repos/{owner}/{repo}/integrity-artifacts?ref=...&exclude_path=...

Generate TREE.txt and SHA256SUMS.txt server-side

POST

/api/github/repos/{owner}/{repo}/branches

Create branch

POST

/api/github/repos/{owner}/{repo}/files

Create/update file

POST

/api/github/repos/{owner}/{repo}/pull-requests

Create PR

POST

/api/github/repos/{owner}/{repo}/pull-requests/{pr_number}/comments

Comment PR

GET

/api/github/repos/{owner}/{repo}/workflow-runs

Read workflow runs

GET

/api/diagnostics/url-map

Read safe URL and route diagnostics

Related MCP server: GPT MCP Service

Production URL map

Canonical production base URL:

https://ds-mcp-server-one.vercel.app

Surface

Production URL

Health

https://ds-mcp-server-one.vercel.app/health

MCP connector

https://ds-mcp-server-one.vercel.app/mcp

GitHub repo metadata

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}

GitHub files

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}/files

GitHub integrity artifacts

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}/integrity-artifacts

GitHub branches

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}/branches

GitHub pull requests

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}/pull-requests

GitHub workflow runs

https://ds-mcp-server-one.vercel.app/api/github/repos/{owner}/{repo}/workflow-runs

GitHub webhook

https://ds-mcp-server-one.vercel.app/api/webhooks/github

URL diagnostics

https://ds-mcp-server-one.vercel.app/api/diagnostics/url-map

Manual verification:

curl -i https://ds-mcp-server-one.vercel.app/health
curl -i https://ds-mcp-server-one.vercel.app/mcp
curl -i -H "Authorization: Bearer $REST_API_BEARER_TOKEN" \
  https://ds-mcp-server-one.vercel.app/api/github/repos/dw18031988/ds_mcp_server
curl -i -H "Authorization: Bearer $REST_API_BEARER_TOKEN" \
  https://ds-mcp-server-one.vercel.app/api/diagnostics/url-map

The former ds-mcp-server-theta.vercel.app deployment is stale and must not be used as current production guidance.

This repo is intentionally small. It is the public-MCP and REST-action foundation for a larger workflow:

Design System Backend / Custom GPT / ChatGPT
  -> reads design request or GitHub repo context
  -> creates guarded branch
  -> updates files on branch
  -> opens PR
  -> submits design review result or PR comment

Requirements

  • Node.js 20+

  • npm

  • Public HTTPS URL for ChatGPT connector usage

  • GitHub fine-grained PAT or GitHub App token for GitHub gateway usage

Local setup

npm install
cp .env.example .env
npm run setup:local
npm run dev

npm run setup:local writes a local .env.local with strong tokens for REST, MCP, and dev tooling, then points the app at your configured Supabase credentials.

Health check:

curl http://localhost:8787/health

Local admin UI:

http://localhost:8787/admin

The admin page includes a localhost environment switcher that can target production when DEV_TOOLS_ENABLED=true and DEV_TOOLS_ALLOW_REAL_DB_SWITCH=true are set. When .env.local exists, the localhost admin page also auto-loads the REST bearer token so you do not need to paste it manually. Use the "Check env issues" modal in /admin to see missing or broken env settings and copy a suggested .env.local fix snippet.

Root check:

curl http://localhost:8787/

REST test:

curl http://localhost:8787/api/design-requests/DSR-001

Security setup

The server now supports a stricter production perimeter:

  • SECURITY_ENFORCEMENT=strict keeps sensitive routes fail-closed, while still allowing the server to boot when optional integrations like GitHub webhooks are not configured.

  • CORS_ALLOWED_ORIGINS narrows browser access when you need cross-origin REST calls.

  • MAX_JSON_BODY_BYTES limits request payload size before parsing.

  • RATE_LIMIT_WINDOW_MS and RATE_LIMIT_MAX_REQUESTS control sensitive-route rate limiting.

  • GET /api/security/posture reports the current security posture and recent signals.

In strict mode, the server expects Supabase to be configured so the rate limiter can use the security_rate_limit_acquire RPC instead of only in-memory state.

Submit test result:

curl -X POST http://localhost:8787/api/agent-results \
  -H "Content-Type: application/json" \
  -d '{
    "request_id": "DSR-001",
    "decision": "revise",
    "summary": "Mobile layout needs cleanup before implementation.",
    "risk_level": "medium",
    "frontend_tasks": [
      {
        "title": "Fix InvoiceCard mobile overflow",
        "acceptance_criteria": [
          "No horizontal scroll at 360px viewport",
          "Invoice content remains readable in mobile card"
        ]
      }
    ],
    "validation": ["Run typecheck", "Test 360px viewport"]
  }'

GitHub gateway setup

Set these env vars before using GitHub tools:

GITHUB_TOKEN=github_pat_xxx
GITHUB_ALLOWED_REPOS=dw18031988/ds_mcp_server,nhatnguyenquang1838-coder/rental_home,nhatnguyenquang1838-coder/gwc
GITHUB_DEFAULT_BASE_BRANCH=main
GITHUB_ALLOWED_BRANCH_PREFIXES=feature/,fix/,chore/,docs/,ai/

This checked-in example does not change the Vercel production environment. Production activation requires a separately approved update to DS_MCP_GITHUB_ALLOWED_REPOS and a redeployment under the deployment authority gate.

Recommended fine-grained PAT permissions for MVP:

Repository access: only selected repositories
Contents: Read and write
Pull requests: Read and write
Actions: Read-only
Metadata: Read-only

Guardrails:

- Repository must be in GITHUB_ALLOWED_REPOS.
- Direct writes to main/master/production/prod are blocked.
- Write branches must start with feature/, fix/, chore/, docs/, or ai/ by default.
- File paths cannot start with /, contain .., or use Windows backslash.
- No merge/delete/force-push/secret-management endpoints are exposed.

E2E governance bootstrap can reconstruct .governance/** from a protected base SHA by listing the repository tree and reading manifest-listed text or binary files at that SHA. User-uploaded governance archives are a fallback, not the normal path.

For repository integrity refresh flows, prefer github_generate_integrity_artifacts or GET /api/github/repos/{owner}/{repo}/integrity-artifacts. This computes TREE.txt and SHA256SUMS.txt server-side from Git tree/blob APIs and avoids returning raw repository ZIP/archive bytes to ChatGPT.

GitHub CI webhook setup

The AgentOps control plane exposes a GitHub webhook endpoint for CI/status callbacks:

POST /api/webhooks/github

Production URL:

https://ds-mcp-server-one.vercel.app/api/webhooks/github

Set this environment variable on the DS MCP deployment:

GITHUB_WEBHOOK_SECRET=replace-with-a-long-random-secret

Then create a GitHub repository webhook with:

Payload URL: https://ds-mcp-server-one.vercel.app/api/webhooks/github
Content type: application/json
Secret: same value as GITHUB_WEBHOOK_SECRET
SSL verification: enabled

Subscribe only to these events:

workflow_run
check_run
check_suite
status

Webhook behavior:

  • ping events return 202 and are ignored.

  • Non-final CI events return 202 and are ignored.

  • Final successful, neutral, or skipped CI results are normalized to success.

  • Final failed, cancelled, timed out, action required, startup failure, or error results are normalized to failure.

  • The normalized CI event is passed into the AgentOps GitHub CI handler, which matches waiting CI tasks by PR number or head SHA.

  • This endpoint uses GitHub X-Hub-Signature-256 verification and intentionally bypasses REST_API_BEARER_TOKEN, because GitHub cannot send the REST bearer token.

Local smoke test without signature, only when GITHUB_WEBHOOK_SECRET is unset:

curl -X POST http://localhost:8787/api/webhooks/github \
  -H "Content-Type: application/json" \
  -d '{"delivery_id":"manual-test-1","repo":"nhatnguyenquang1838-coder/rental_home","pr_number":101,"head_sha":"example","conclusion":"success"}'

GitHub REST read file test:

curl "http://localhost:8787/api/github/repos/dw18031988/ds_mcp_server/files?path=README.md"

Create branch test:

curl -X POST http://localhost:8787/api/github/repos/dw18031988/ds_mcp_server/branches \
  -H "Content-Type: application/json" \
  -d '{"branch":"docs/test-github-gateway","from_branch":"main"}'

Create/update file test:

curl -X POST http://localhost:8787/api/github/repos/dw18031988/ds_mcp_server/files \
  -H "Content-Type: application/json" \
  -d '{
    "path":"docs/test-github-gateway.md",
    "content":"# Test GitHub Gateway\n",
    "branch":"docs/test-github-gateway",
    "message":"docs: test github gateway"
  }'

Create PR test:

curl -X POST http://localhost:8787/api/github/repos/dw18031988/ds_mcp_server/pull-requests \
  -H "Content-Type: application/json" \
  -d '{
    "title":"docs: test github gateway",
    "head":"docs/test-github-gateway",
    "base":"main",
    "body":"## Summary\n- Test GitHub gateway\n\n## Validation\n- Manual API call",
    "draft":true
  }'

Test with MCP Inspector

npx @modelcontextprotocol/inspector@latest \
  --server-url http://localhost:8787/mcp \
  --transport http

Expose publicly for ChatGPT development

Example with ngrok:

ngrok http 8787

OAuth discovery endpoints exposed by this server:

https://<your-public-domain>/.well-known/oauth-authorization-server
https://<your-public-domain>/.well-known/oauth-protected-resource
https://<your-public-domain>/oauth/register
https://<your-public-domain>/oauth/authorize
https://<your-public-domain>/oauth/token

ChatGPT MCP connector setup

In ChatGPT:

Settings
-> Apps & Connectors
-> Advanced settings
-> Developer mode
-> Create connector

Use OAuth and point ChatGPT at the public MCP endpoint:

Name: Design System MCP
URL: https://<your-public-domain>/mcp
Authentication: OAuth

If ChatGPT asks for OAuth endpoints, use:

Authorization URL: https://<your-public-domain>/oauth/authorize
Token URL: https://<your-public-domain>/oauth/token
Registration URL: https://<your-public-domain>/oauth/register
Discovery URL: https://<your-public-domain>/.well-known/oauth-authorization-server

Custom GPT Actions setup

Use the dedicated schema file for Custom GPT Actions:

docs/openapi/ds-mcp-custom-agent-v2.yaml

Important: Custom GPT Actions should call REST endpoints, not /mcp directly.

Use server URL:

https://<your-public-domain>

Authentication:

  • Choose API Key

  • Header name: Authorization

  • Value format: Bearer <REST_API_BEARER_TOKEN>

  • GET /health and GET /api/capabilities stay public for smoke tests

Quick smoke test:

curl https://<your-public-domain>/api/capabilities
curl -H "Authorization: Bearer <REST_API_BEARER_TOKEN>" https://<your-public-domain>/api/tasks

If the second call returns 401, verify the bearer token matches the Vercel production environment variable exactly.

MCP auth options

OAuth is the preferred connector flow.

For local tools like MCP Inspector, you can still use bearer auth:

MCP_BEARER_TOKEN=replace-with-a-long-random-token

Then MCP clients must send:

Authorization: Bearer replace-with-a-long-random-token

MCP_URL_SECRET is still supported as a temporary compatibility path, but new ChatGPT connector setups should use OAuth.

If PUBLIC_BASE_URL is not set, the server falls back to VERCEL_URL when it is available in production.

The REST wrapper still enforces REST_API_BEARER_TOKEN for sensitive routes in production. Keep GET /health public, and use GET /api/capabilities only for connector smoke tests. If you want a quick security check from the admin UI, load /admin with the bearer token and inspect the security posture panel.

Backend result forwarding

ds_submit_agent_result and POST /api/agent-results store result in memory and can also forward to your backend:

DS_BACKEND_URL=https://your-backend.example.com
INTERNAL_AGENT_RESULT_TOKEN=change-me

Expected backend endpoint:

POST /internal/agent-results
Header: X-Internal-Token: <INTERNAL_AGENT_RESULT_TOKEN>
Body: Agent result JSON

Scripts

npm run dev        # local development
npm run typecheck  # TypeScript validation
npm run build      # compile to dist
npm start          # run compiled server

Env ops:

npm run env:ops -- audit
npm run env:ops -- plan-rotate --vars=DS_MCP_MCP_BEARER_TOKEN,DS_MCP_REST_API_BEARER_TOKEN
npm run env:ops -- write-local --vars=DS_MCP_MCP_BEARER_TOKEN
npm run vercel:env-ops -- --all-secrets --execute

The Vercel rotation tool is interactive and requires a linked Vercel project (vercel link) or an explicit project context before it can run destructive changes.

Production notes

Minimum controls before production:

  • Set PUBLIC_BASE_URL when you want a stable OAuth issuer URL, or rely on VERCEL_URL on Vercel.

  • Keep MCP_BEARER_TOKEN only for direct MCP clients and local inspection.

  • Add auth for REST endpoints before using real data.

  • Keep write tools narrow and schema-validated.

  • Do not expose destructive tools in MVP.

  • Do not put secrets in tool output.

  • Audit all write calls.

  • Validate agent result JSON again in the backend.

  • Prefer GitHub App auth over PAT for multi-user/team production.

Docker

docker build -t ds-mcp-server .
docker run --rm -p 8787:8787 --env-file .env ds-mcp-server
A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/dw18031988/ds_mcp_server'

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