MCP server for FCA Handbook compliance analysis with verbatim citations.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by The Metis Fca Handbook AI Harness MCP.
evaluate_fca_handbook_applicabilityEvaluate which FCA Handbook entries apply to an entity, via the Metis FCA Handbook AI Harness. One-shot: no session, no conversation state. Supports quick mode (60-120 seconds, default) and full mode (longer, more detailed). Returns a compliance report with verbatim citations, gaps, and refinementβ¦
An MCP (Model Context Protocol) server that integrates the Metis FCA Handbook AI Harness into your AI workflow. MCP is supported by Claude, OpenAI, Gemini, and most desktop/IDE MCP clients (Cursor, Windsurf, Cline, and others) β this README uses Claude Code and Claude Desktop as fully worked examples; adjust the configuration steps to fit your own client.
Source & full documentation: github.com/99blakeD99/the-metis-fca-handbook-ai-harness-mcp-files
evaluate_fca_handbook_applicabilityEvaluate which FCA Handbook entries apply to an entity, via the Metis FCA Handbook AI Harness. One-shot: no session, no conversation state. Supports quick mode (60-120 seconds, default) and full mode (longer, more detailed). Returns a compliance report with verbatim citations, gaps, and refinement suggestions.
Efficiency Multiplies effectiveness of compliance advice. Saves Β£80+ in token fees per Harness run.
Deals with "Hard Problem", in which LLMs' token incentives prioritise training data so results are unreliable.
Verbatim citations Quotes verbatim entries from the FCA Handbook. Other AI systems struggle to do this.
Matches real-world need You do not have to start off knowing which sections you are looking for. Carries out structured searches across all 33,000+ FCA Handbook entries.
Secure Design Harness compartmentalisation, one-shot structure, and statelessness fits natively with emerging AI agent security standards such as OWASP Top 10 for Agentic Applications 2026.
AI Accessible Integrates easily with AI workflows and agents. Your LLM can use it as a tool.
Experience the Harness interactively before integrating:
Email the-metis-fca-handbook-ai-harness@jbmd.co.uk and request a free temporary Access Code.
Ask compliance questions in natural language and watch each reasoning step unfold in real-time.
The Harness is built on proven principles:
Embed FCA reasoning as a service within your compliance platform. Users ask natural-language questions; your platform calls the Harness and presents structured reasoning.
Agents building compliance workflows can include FCA Handbook reasoning as a composed toolβno external API calls, just MCP configuration.
Integrate into document review or due-diligence pipelines. Automatically screen new rules against FCA applicability.
FS firms screening MCP servers will find:
Visit the Metis account dashboard:
The mcpServers JSON shape below is shared by most desktop/IDE MCP clients, but the config file location and restart step vary by client. Pick the one that matches what you are using.
Important: The Harness API key should be supplied at runtime from an environment variable or secrets manager, never hardcoded as a literal value in a configuration file that may be committed to a shared repository. Two methods are supported β pick one, since they require different MCP config:
export METIS_API_KEY="sk_live_..." to your shell startup file (~/.bashrc, ~/.zshrc, etc.), before launching your MCP client (VS Code, Claude Desktop, etc.), so the variable is present in the client's own process environment. With this method, your MCP config should reference the variable via substitution:
.env file in your project directory containing METIS_API_KEY=sk_live_.... The server loads this itself at startup (via load_dotenv()) β your MCP client never needs to see the value. With this method, omit the env block from your MCP config entirely. Do not copy the "${METIS_API_KEY}" snippet from Method A β your client's own environment will not have that variable set, so the substitution will silently fail and pass the literal string ${METIS_API_KEY} through as your API key. This produces a 401 error that is easy to mistake for a bad/revoked key.β οΈ If your MCP config lives in your home directory (~/.mcp.json) rather than a project-local location (.mcp.json in a project root), it applies to every project on the machine β a stray ${METIS_API_KEY} placeholder there will break the harness for every project, not just the one you are setting up. Prefer a project-local config unless you specifically want a shared, machine-wide key.
Claude Code (the Claude IDE extension) supports both global (user-level) and project-level MCP configuration. Note: MCP servers are configured in .mcp.json files, never in .claude/settings.json β that file is for permissions/preferences only and does not recognize an mcpServers key (Claude Code will reject it with Unrecognized field: mcpServers).
The easiest way to add either scope is the CLI itself, which writes the correct file for you. Quote the ${METIS_API_KEY} reference exactly as shown (single quotes) so your shell does not expand it before claude mcp add sees it β otherwise your actual key gets written as a literal into the config file, which is the hardcoding this whole section is trying to avoid:
This is Method A β export the real key in your shell profile as shown below. Use --scope project instead of --scope user for a project-local setup. If you would rather edit the file directly, or want Method B (.env), see below.
If you work across multiple projects, configure the MCP globally so it is available everywhere. Because this file is shared machine-wide, use Method A β a stray .env lookup path is per-project and does not fit a global setup as cleanly.
File location: ~/.mcp.json (your home directory β note this is a standalone file, not inside .claude/)
Edit or create ~/.mcp.json and add:
Then add to your shell profile (e.g. ~/.bashrc, ~/.zshrc, ~/.fish/config.fish), before starting Claude Code:
Replace sk_live_... with your actual API key from your Metis account. Claude Code substitutes ${METIS_API_KEY} from this environment variable when it starts the server β if the variable is not set at that point, Claude Code loads the server with the literal string ${METIS_API_KEY} instead (and warns about it), which is what causes the misleading 401 described in Troubleshooting below.
Restart: Restart Claude Code. Once connected, the evaluate_fca_handbook_applicability tool will be available in all projects.
If you only need the MCP in one specific project, configure it project-locally instead. This is the natural fit for Method B.
File location: .mcp.json in your project root (a standalone file, not inside .claude/)
Edit or create .mcp.json and add β no env block, per Method B above:
Then create a .env file in your project root containing:
Replace sk_live_... with your actual API key from your Metis account.
Important: Project-level .mcp.json and .env files are often checked into version control β ensure METIS_API_KEY is in .gitignore before committing (the .mcp.json itself contains no secret, since Method B omits the env block), or use the global configuration approach instead (recommended for FS firms).
Restart: Claude Code will detect the change and reload MCP connections automatically (or you can restart the IDE).
File location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonClaude Desktop's config is inherently machine-wide (there is no project-local variant), so Method A is the more consistent fit β see the β οΈ note above before using Method B here.
Method A β Shell Profile:
Factual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/the-metis-fca-handbook-ai-harness-mcp)<a href="https://allmcps.com/mcp/the-metis-fca-handbook-ai-harness-mcp"><img src="https://allmcps.com/api/badge/the-metis-fca-handbook-ai-harness-mcp?style=directory" alt="The Metis Fca Handbook AI Harness MCP on AllMCPs" /></a>