Passport Casework MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Passport Casework MCP Serverwhat's the status of application 500123?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Build a research assistant over HM Passport Office casework
A passport-casework assistant answers two kinds of question. Simple lookups — "what's the status of application 500123?" — are handled by governed MCP tools. But most management questions are analytical — "what's our median processing time by office, and where is the backlog worst?" — and no one can pre-build a tool for each one, so the assistant writes and runs its own Python. Running model-written code is the dangerous part — which is what this morning was about.
You edit one file. Everything here is built and runs, except the containment inside
analysis_tool.py, which you finish. Then you run the assistant and watch it work.
Setup
Plain Python — no Docker, no Git.
pip install -r requirements.txt
python seed.py # builds the caseload: data/passport_applications.csv
python test_analysis.py # 3 of 4 pass until you finish the task belowRelated MCP server: ResourceSpace MCP Server
The task — finish analysis_tool.py
This is the only file you change. It already runs the model's code in a child process,
over the caseload, under a wall-clock timeout. Three containment pieces are missing, each
marked # TODO (you) in the file:
# | Add | Where in |
1 | No network — wrap the child in |
|
2 | CPU-time cap — |
|
3 | File-size cap — |
|
For the two caps, copy the shape of the RLIMIT_AS / RLIMIT_NPROC lines already sitting in
_set_limits(). You do not touch server.py, assistant.py, or test_analysis.py.
You are done when:
python test_analysis.py # 4/4 — the outbound call is now BLOCKED, and a real analysis still returns 640Then — run the assistant
assistant.py is written for you. Once your containment is in place, just run it:
python assistant.py "Which two processing offices are most in need of extra staff this quarter, and what is the evidence?"Watch it work: it searches the caseload with the governed MCP tools, computes the medians and
backlogs with your run_analysis, cites the service standard, and answers. That is the whole
point — the governed tools run trusted, in-process; the one open-ended capability, arbitrary
code, is the only thing contained.
If you want to go further (optional)
Add to the research surface in
server.py— a filter by date range or fraud flag, a per-office resource. Watch the boundary: lookups belong on the server, aggregates stay in the sandbox.Give it an open brief — "write the quarterly processing note for the board" — and see how far the tool-plus-sandbox pattern carries a multi-step answer.
Where containment stops
The child process, setrlimit and the network namespace stop resource exhaustion and close
egress — but do not fully confine the filesystem. For genuinely hostile code you would add a
container (--network=none --read-only --cap-drop=ALL + seccomp), then gVisor or a microVM.
Here the code is the department's own model, not an adversary, so Tier 2 is a defensible floor.
Files
File | |
| The one file you edit — finish the containment. |
| The battery that tells you when you're done. Run it; don't edit it. |
| The assistant — provided and runnable. |
| The governed MCP server (lookups + guidance). Provided; extend only if you go further. |
| The caseload, and the service-standard resource. |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Governed data discovery, exact queries, decisions, simulations, and runtime utilities over MCP.
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Agent-native travel platform: read-only flight, hotel, and brand tools over MCP. OAuth sign-in.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceExposes RFQ, travel, and hospitality operations as MCP tools backed by a GraphQL API.MIT
- AlicenseNot gradedqualityCmaintenanceProvides comprehensive access to the ResourceSpace Digital Asset Management API through MCP tools, resources, and workflow prompts, enabling asset management, search, collections, metadata, and administrative operations.131MIT
- AlicenseNot gradedqualityCmaintenanceMCP server that exposes read-only tools to query a passport applications database, enabling an AI assistant to check application status without exposing personal applicant details.MIT
- AlicenseAqualityBmaintenanceProvides governed retrieval over MCP with hybrid search, strict confidence gating, and access control, exposing three read-only tools.3Apache 2.0