What problem does it solve? Subagents dispatched via the Agent tool often fail to inherit the parent's MCP tools, leaving them unable to call mcp__* tools even when the tools field lists them. This Skill documents the correct frontmatter fields and the mcpServers declaration that reliably wires MCP servers into a subagent. ## Core Features & Use Cases - Frontmatter reference: Covers name, description, tools, mcpServers, model, and permissionMode fields for .claude/agents/.md files, including which tools subagents can never receive. - MCP inheritance workaround: Explains the Agent-tool MCP-inheritance gap (claude-code#30280) and shows that a named mcpServers entry grants that server's whole toolset directly, bypassing the broken ToolSearch path. - Verification workflow: Provides a probe-agent pattern to report what tools a subagent actually receives, plus guidance on the session-start agent registry freeze and headless claude -p testing. - Use Case: A search-heavy subagent reports only Bash, Read, and Write; add mcpServers: [ripgrep] and mcp__ripgrep__ to its frontmatter so it gains structured search tools. ## Quick Start Ask the agent to write a Claude Code subagent definition that grants the playwright MCP server using the mcpServers frontmatter field and verify it with a probe agent.