Skip to main content
ClaudeWave

Paxaver MCP server — AI-facing adapter over the Paxaver school lunch platform

MCP ServersOfficial Registry0 stars0 forksTypeScriptApache-2.0Updated today
ClaudeWave Trust Score
87/100
Trusted
Passed
  • Open-source license (Apache-2.0)
  • Actively maintained (<30d)
  • Clear description
  • Documented (README)
Last scanned: 9/13/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/Smartoire/paxaver-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "paxaver-mcp": {
      "command": "node",
      "args": ["/path/to/paxaver-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/Smartoire/paxaver-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

# Paxaver MCP Server

> AI-facing adapter over the [Paxaver](https://paxaver.com) school community platform.
> Implements the Model Context Protocol (MCP) on Cloudflare Workers with RS256 JWT
> validation, capability-first authorization, and Streamable HTTP transport.

[![npm version](https://img.shields.io/npm/v/@paxaver/mcp.svg)](https://www.npmjs.com/package/@paxaver/mcp)
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](./LICENSE)
[![MCP Badge](https://lobehub.com/badge/mcp/paxaver)](https://lobehub.com/mcp/paxaver)
[![Paxaver MCP connector – tool definition quality and endpoint health on Glama](https://glama.ai/mcp/connectors/com.paxaver.mcp/paxaver/badges/score.svg)](https://glama.ai/mcp/connectors/com.paxaver.mcp/paxaver)

---

## What this is

The Paxaver MCP server lets AI assistants (ChatGPT, Claude, Perplexity, and any
MCP-compatible client) act on behalf of a Paxaver user: check a lunch menu, order
lunch, register for fundraising events, volunteer, and — for school administrators
— manage restaurants, menu items,
events, and daily orders.

It is a **thin adapter**. It contains no business logic and never touches the
database, Stripe, or email directly. Every action is delegated to the private
Paxaver backend API over a Cloudflare **service binding** (same region, no public
network hop). The MCP server's only responsibilities are:

- MCP protocol handling (JSON-RPC 2.0, Streamable HTTP)
- RS256 JWT validation via JWKS from the centralized Paxaver auth worker
- Per-tool capability policy and role gating
- Sanitized, user-safe error mapping

Authentication is handled by the Paxaver auth worker (`auth.paxaver.com`), which
serves as the OAuth 2.0 / OIDC authorization server. The MCP server validates
the resulting RS256 JWTs and forwards them to the backend. The MCP server itself
is not an authorization server.

---

## Architecture

```text
┌───────────────┐     MCP (Streamable HTTP)      ┌──────────────────────┐
│   AI Client   │ ─────────────────────────────▶ │   Paxaver MCP Worker │
│ ChatGPT/Claude│ ◀───────────────────────────── │  (this repo)         │
│  /Perplexity  │     RS256 JWT + JSON-RPC 2.0   │  Hono + jose         │
└───────────────┘                                └──────────┬───────────┘
                                                            │
                                          Cloudflare service binding
                                          (PAXAVER_API, same region)
                                                            │
                                                            ▼
                                                 ┌──────────────────────┐
                                                 │  Paxaver API Worker  │
                                                 │  (private backend)   │
                                                 │  D1 · Stripe · SES   │
                                                 └──────────────────────┘
```

The MCP worker **never** binds D1, Stripe, or SES. The service binding carries a
short-lived JWT (120s TTL, audience `paxaver-internal`) that the backend trusts as
an internal call while still attributing the action to the authenticated Paxaver
user. See [`docs/architecture.md`](./docs/architecture.md) for the full picture.

---

## Quick start

### Install

```bash
npm install @paxaver/mcp
```

### Develop locally

```bash
# 1. Install dependencies (Node >= 22)
npm install

# 2. Run the worker locally (Miniflare)
npm run dev

# 3. Typecheck, lint, and test
npm run typecheck
npm run lint
npm test
```

The local dev server starts on `http://localhost:8787`. Discovery endpoints live
under `/.well-known/`; the MCP endpoint is `POST /mcp`.

> **Note:** Local development without the `PAXAVER_API` service binding falls back
> to authenticated HTTPS against `API_BASE_URL` (default `http://localhost:8787`).
> For full integration testing, run the Paxaver backend worker locally and point
> `API_BASE_URL` at it.

---

## Deployment

Two environments, each a separate Worker with its own custom domain:

| Environment  | Worker name           | Domain            |
| ------------ | --------------------- | ----------------- |
| `staging`    | `paxaver-mcp-staging` | `mcp.paxaver.dev` |
| `production` | `paxaver-mcp`         | `mcp.paxaver.com` |

The production worker serves both CA and US users through a single endpoint
(`mcp.paxaver.com`). User region is resolved from the JWT `tenant_id` claim,
and the worker routes to the correct regional backend via service bindings
(`PAXAVER_API_CA`, `PAXAVER_API_US`). Currency is determined by the user's
school, not by the MCP endpoint.

```bash
npm run deploy:staging   # wrangler deploy --env staging
npm run deploy:prod      # wrangler deploy --env production
```

The worker requires no secrets. See
[`docs/deployment.md`](./docs/deployment.md).

---

## Tools

The server exposes 26 tools grouped into six categories. Visibility in
`tools/list` is filtered by the caller's roles; every call is re-authorized
before dispatch, and the backend re-checks data-level access (defense-in-depth).

| Category           | Tools                                                                                                                                                                  |
| ------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| User / account     | `get_user_info`                                                                                                                                                        |
| Wallet             | `get_wallet_balance`, `get_wallet_status`                                                                                                                              |
| Orders & menu      | `order_lunch`, `get_orders`, `get_daily_menu`, `get_daily_orders`, `get_monthly_orders`, `create_draft_order`, `finalize_order`, `cancel_order`                        |
| Events             | `get_upcoming_events`, `create_event`, `update_event`, `cancel_event`, `register_event`, `sign_up_to_volunteer`                                                        |
| Admin / restaurant | `list_school_restaurants`, `create_restaurant`, `list_menu_items`, `create_menu_item`, `update_menu_item`, `set_menu_item_price`, `delete_menu_item`, `set_daily_menu` |

Financial and destructive tools are labeled and require user confirmation. Full
reference: [`docs/tools.md`](./docs/tools.md). Authorization policy:
[`docs/authorization.md`](./docs/authorization.md).

### Privacy

No personal contact information (email, phone, address) is collected or
returned through MCP tools. The `get_user_info` tool returns only the user's
name, school, students, and roles. Student data is limited to IDs, names, and
school slugs. Allergies, notes, birthday, and other PII are not exposed in
read responses. The MCP server does not log user data.

---

## Documentation

| Document                                           | Topic                                                             |
| -------------------------------------------------- | ----------------------------------------------------------------- |
| [docs/architecture.md](./docs/architecture.md)     | System architecture, service binding boundary, regional isolation |
| [docs/authentication.md](./docs/authentication.md) | JWT validation, JWKS, auth worker delegation, token format        |
| [docs/authorization.md](./docs/authorization.md)   | Capability policy table, role gating, defense-in-depth            |
| [docs/tools.md](./docs/tools.md)                   | Full tool reference with input schemas and classifications        |
| [docs/deployment.md](./docs/deployment.md)         | Wrangler config, environments, secrets, custom domains            |
| [docs/security.md](./docs/security.md)             | Security model, CORS, CSRF, error sanitization, headers           |
| [docs/compatibility.md](./docs/compatibility.md)   | MCP protocol version, transports, supported AI clients            |
| [docs/migration.md](./docs/migration.md)           | Migration from the legacy `mcp-server/` in the private monorepo   |
| [CHANGELOG.md](./CHANGELOG.md)                     | Release history                                                   |
| [SECURITY.md](./SECURITY.md)                       | Vulnerability reporting policy                                    |
| [CONTRIBUTING.md](./CONTRIBUTING.md)               | Development setup and contribution process                        |

---

## Tech stack

- **Runtime:** Cloudflare Workers (`compatibility_date: 2026-08-01`, `nodejs_compat`)
- **Framework:** [Hono](https://hono.dev) v4
- **JWT:** [jose](https://github.com/panva/jose) v6 (RS256 via JWKS)
- **Protocol:** MCP `2025-06-18`, Streamable HTTP
- **Auth:** RS256 JWT validation via centralized auth worker (`auth.paxaver.com`)
- **Build/deploy:** [Wrangler](https://developers.cloudflare.com/workers/wrangler/) v4
- **Test:** [Vitest](https://vitest.dev) v2 (Workers pool + Node pool)

---

## License

Apache-2.0. Copyright (c) 2026 Smartoire. See [`LICENSE`](./LICENSE).

What people ask about paxaver-mcp

What is Smartoire/paxaver-mcp?

+

Smartoire/paxaver-mcp is mcp servers for the Claude AI ecosystem. Paxaver MCP server — AI-facing adapter over the Paxaver school lunch platform It has 0 GitHub stars and its last recorded update is dated 2026-09-13.

How do I install paxaver-mcp?

+

You can install paxaver-mcp by cloning the repository (https://github.com/Smartoire/paxaver-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is Smartoire/paxaver-mcp safe to use?

+

Our security agent has analyzed Smartoire/paxaver-mcp and assigned a Trust Score of 87/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains Smartoire/paxaver-mcp?

+

Smartoire/paxaver-mcp is maintained by Smartoire. The last recorded GitHub activity is dated 2026-09-13, with 0 open issues.

Are there alternatives to paxaver-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy paxaver-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: Smartoire/paxaver-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/smartoire-paxaver-mcp)](https://claudewave.com/repo/smartoire-paxaver-mcp)
<a href="https://claudewave.com/repo/smartoire-paxaver-mcp"><img src="https://claudewave.com/api/badge/smartoire-paxaver-mcp" alt="Featured on ClaudeWave: Smartoire/paxaver-mcp" width="320" height="64" /></a>

More MCP Servers

paxaver-mcp alternatives