Subscribe to the Non-Human & AI Identity Journal

MCP Server

An MCP server is a tool endpoint that connects an AI agent to external systems and data sources through Model Context Protocol. Because it extends what the agent can reach, it becomes part of the identity and access surface and must be reviewed like any other privileged connector.

Expanded Definition

An MCP server is the privileged connector layer that lets an AI agent invoke tools, query data, and trigger workflows through Model Context Protocol. In NHI terms, it behaves less like a simple integration and more like an access-bearing identity boundary.

That distinction matters because the server can inherit trust from the agent while simultaneously extending reach into systems that were never designed for autonomous use. As a result, MCP servers sit at the intersection of tool authorization, secret handling, logging, and policy enforcement. Definitions vary across vendors on whether the server is treated as an application, an integration broker, or part of the agent runtime, but the operational risk is the same: it can expand the blast radius of a compromised or over-permissioned agent. The closest governance analogies are the control expectations described in OWASP Agentic AI Top 10 and the NHI security framing in OWASP Agentic Applications Top 10.

The most common misapplication is treating an MCP server as a low-risk plumbing component, which occurs when teams fail to scope tool permissions or review the downstream systems it can reach.

Examples and Use Cases

Implementing MCP server access rigorously often introduces friction in onboarding and testing, requiring organisations to weigh agent autonomy against tighter approvals, secret hygiene, and per-tool scoping.

  • A coding agent uses an MCP server to read repository metadata and open pull requests, but the server is limited to read-only access until explicit approval is granted.
  • A support agent connects through an MCP server to a ticketing platform, while the server enforces RBAC so the agent cannot view customer records outside its role.
  • An internal research agent queries a document store through an MCP server, with each tool call logged for audit and incident review.
  • A finance workflow agent sends approvals through an MCP server that brokers access to ERP systems only during a JIT window, reducing standing exposure.
  • A security team reviews server-side configuration after reading Analysis of Claude Code Security and aligns its controls with OWASP Top 10 for Agentic Applications 2026.

These examples show that the term is not limited to one platform or one agent framework. It is the pattern of delegated reach that matters, especially when the MCP server becomes the enforcement point for secrets, tool permissions, and session boundaries.

Why It Matters in NHI Security

MCP servers matter because they often become the hidden control plane for non-human access. When they are weakly governed, an agent can inherit access to secrets, internal APIs, and production systems without the same scrutiny applied to human administrators. That creates a fast path from prompt-level compromise to system-level impact. In the 2025 Astrix Security research, 53% of MCP servers exposed credentials through hard-coded values in configuration files, which shows how quickly connector infrastructure can become an identity and secrets problem at the same time.

This is why the issue belongs in NHI governance, not just application security. An MCP server should be reviewed like any privileged connector, with attention to tool authorization, secret storage, logging, and revocation. The NHI lens is also consistent with the broader agent risk signals in the OWASP Agentic Applications Top 10 and the external OWASP Agentic AI Top 10, both of which emphasise constrained tool use and failure containment.

Organisations typically encounter MCP server risk only after an agent exposes a secret, reaches an unintended system, or triggers an unauthorised workflow, at which point the server becomes operationally unavoidable to address.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Non-Human Identity Top 10 and OWASP Agentic AI Top 10 address the attack and risk surface, while NIST CSF 2.0 set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-02 Covers secret handling and connector exposure risks common in MCP server deployments.
OWASP Agentic AI Top 10 A2 Addresses unsafe tool use and overbroad agent actions enabled by MCP servers.
NIST CSF 2.0 PR.AC-4 Maps to least-privilege access control for non-human connector identity boundaries.

Inventory MCP servers, remove embedded secrets, and enforce scoped access on every tool connector.