field-agent-mcp
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., "@field-agent-mcpDo you accept HSA cards?"
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.
Forward-Deployed Agent Lab
A production-shaped, synthetic service-business agent that demonstrates the work between a model demo and a usable customer system: workflow discovery, grounded answers, tool boundaries, human escalation, evaluation, voice integration, and Kubernetes deployment.
This repository contains no client data or client code. The fictional Northstar Clinic dataset was written for reproducible testing. The operating pattern is informed by hands-on work helping small service businesses adopt AI workflows; see the anonymized case study.
System at a glance
Web / Voice / MCP client
|
v
FastAPI + MCP adapters
|
v
deterministic route + safety boundary
/ | \
knowledge intake tool human handoff
citations pending only normal / urgent
|
v
tests + synthetic evaluation + Kubernetes runtime controlsRelated MCP server: ToolBridge
What is implemented
FastAPI endpoints for agent responses, voice-ready SSML/audio, health, readiness, and evaluation
Deterministic retrieval over an approved bilingual knowledge base with source citations
Explicit escalation for emergencies, professional judgment, and ungrounded questions
MCP tools for knowledge search, intake collection, and human escalation
Local macOS text-to-speech adapter with no external data transfer
Reproducible synthetic evaluation for route, handoff, tool-selection, and grounding behavior
Compact BERT intent-router fine-tuning experiment, kept outside the deterministic safety boundary
Docker image and Kubernetes Deployment, Service, HPA, probes, resource limits, and NetworkPolicy
Automated API, core-engine, MCP-tool, evaluation, and deployment-manifest tests
Run locally
Python 3.11–3.13 is supported.
python3 -m venv .venv
source .venv/bin/activate
python -m pip install -e ".[dev]"
pytest
python scripts/run_eval.py
uvicorn field_agent_lab.api:app --reloadOpen http://127.0.0.1:8000/docs for the interactive API.
Grounded knowledge request
curl -s http://127.0.0.1:8000/v1/agent/respond \
-H 'content-type: application/json' \
-d '{"message":"Do you accept HSA cards?","locale":"en-US"}'The response includes a knowledge route and citations to the approved payment document.
Scheduling request
curl -s http://127.0.0.1:8000/v1/agent/respond \
-H 'content-type: application/json' \
-d '{"message":"I want to book an appointment","customer_id":"demo-123"}'The system returns a collect_intake tool call and explicitly says that staff must confirm availability.
Voice-ready response
curl -s http://127.0.0.1:8000/v1/voice/respond \
-H 'content-type: application/json' \
-d '{"message":"When are you open?","generate_audio":false}'Set generate_audio to true on macOS to return base64-encoded AIFF audio generated by the local say provider.
MCP server
field-agent-mcpTools:
search_service_knowledgecollect_intakeescalate_to_human
The MCP interface reuses the same core engine as the HTTP API, so safety and grounding behavior do not drift by channel.
Compact-model experiment
Install the optional training dependencies and run:
python -m pip install -e ".[train]"
python training/train_router.pyThe script fine-tunes prajjwal1/bert-tiny on four synthetic intent classes and writes transparent metrics to artifacts/router_metrics.json. The model is an experiment; deterministic rules remain the safety boundary.
Deployment
docker build -t forward-deployed-agent-lab .
kubectl apply -f deployment/k8s.yamlThe manifest intentionally includes readiness/liveness probes, non-root execution, dropped Linux capabilities, resource requests/limits, horizontal autoscaling, and a network policy.
Evidence and limitations
Generated reports are committed under artifacts/ after execution. All benchmark cases are visible in data/eval_cases.jsonl. The dataset is small and synthetic, so the reported score is a regression baseline—not a claim of clinical quality or production generalization.
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
- Alicense-qualityDmaintenanceA production-grade MCP server designed for multi-tenant, authenticated, and observable AI agent systems, enabling secure tool execution across heterogeneous data sources.54MIT
- Flicense-qualityCmaintenanceA governed MCP server for integrating AI agents with customer data, featuring role-based access control, field redaction, and human-in-the-loop approval for secure support operations.1
- FlicenseAqualityBmaintenanceA production-grade MCP server that provides a centralized microservice toolkit for LLM agents, enabling web search and extensible tool integration.1
- Flicense-qualityCmaintenanceMCP server that enforces governance on agentic decisions with auditable evidence records, providing tools for understanding, calibrating confidence, and navigating handoffs based on policy.1
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
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/YihengLi-1/forward-deployed-agent-lab'
If you have feedback or need assistance with the MCP directory API, please join our Discord server