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: mcp_hospirfq_processor
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 Servers
- Flicense-qualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.Last updated1
- Alicense-qualityBmaintenanceExposes RFQ, travel, and hospitality operations as MCP tools backed by a GraphQL API.Last updatedMIT
- Alicense-qualityDmaintenanceProvides 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.Last updated191MIT
- Flicense-qualityCmaintenanceEnables customer support operations such as order lookup, store credit, refunds, and audit log review through an agent using safe, typed MCP tools.Last updated
Related MCP Connectors
UK Police MCP — wraps the UK Police Data API (free, no auth)
Companies House MCP — UK statutory company registry (BYO key)
Remote MCP for A2A caller identity, scope policy, verdict receipts, and audit history.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/iNileshW/research-assistant-practice'
If you have feedback or need assistance with the MCP directory API, please join our Discord server