Skip to main content

Toolkit

MCP Integration · Pitfalls

On this page7 sections

Pitfalls

Family-Level Support Claims

MCPUSB-C for AI — one standard plug so any agent can connect to any data source or tool.The Model Context Protocol: an open standard (Anthropic, 2024) for connecting AI systems to external tools and data without building a custom integration for each one.Full definition primitives and authentication differ by surface. Name the client and verify the exact contract.

Overprivileged Credentials

The server can act with whatever its identity permits, regardless of the model's stated intent. Use least privilege and separate environments.

Tool Descriptions as Authorization

Descriptions guide model choice; they do not enforce who may act or which records may be touched.

Prompt Injection in Results

External content can contain instructions aimed at the model. Separate data from control, sanitize presentation, and constrain subsequent tools.

Unbounded Responses

Large outputs consume context and obscure relevant facts. Paginate, summarize deterministically, and return references for drill-down.

Non-Idempotent Retries

Timeout recovery can repeat external writes. Use idempotency keys and return durable operation identifiers.

Falsification Checklist

  • Are required primitives supported on this exact surface?
  • What authority does the server identity actually have?
  • Can untrusted output influence a more powerful tool?
  • Are writes idempotent and independently logged?
  • Does the hosted environment use the same network and authentication path as local testing?

Source register

MCP Integration sources

Primary vendor documentation reviewed on the date shown. Links may change after publication.

  1. Connect Claude Code to tools via MCP (opens in a new tab)

    Anthropic · official docs · accessed 2026-08-01

  2. Model Context Protocol (opens in a new tab)

    OpenAI · official docs · accessed 2026-08-01

  3. Overview of customizing GitHub Copilot CLI (opens in a new tab)

    GitHub · official docs · accessed 2026-08-01

  4. GitHub Copilot CLI command reference (opens in a new tab)

    GitHub · official docs · accessed 2026-08-01

  5. MCP and Copilot cloud agent (opens in a new tab)

    GitHub · official docs · accessed 2026-08-01