DEEP DIVE ยท 10

MCP & major servers

Model Context Protocol โ€” the open standard that connects Claude to Slack, GitHub, Drive, and internal databases. How it works, the major servers, five executive-level workflows, and how it relates to the Skills system.

Open Standard 110+ Servers Registry Skills Ecosystem

1. What MCP is

Model Context Protocol (MCP) is an open standard for connecting AI applications to external systems. Think USB-C: one unified interface, so you don't write a bespoke integration for every connection target (Slack / GitHub / Drive / internal DB / โ€ฆ).

Transports

  • stdio: local execution (Claude Code, Desktop, VS Code, Cursor). A server process runs on the user's machine and communicates via stdin/stdout.
  • HTTP: remote server (Claude API MCP Connector). Shared cloud-hosted server, connected over HTTP/SSE โ€” usable from multiple clients.

Capability negotiation

On connect, the server declares the resources (files, DBs), tools (APIs, scripts), and prompts it exposes. The client (Claude) only invokes what it actively needs โ€” which keeps context size bounded instead of ballooning.

Security boundaries

  • Connection control: the client manages which servers are allowed to connect (allow-list).
  • Exposure scope: the server chooses which resources and tools to expose.
  • Encryption: all traffic is TLS. HTTP transport supports auth headers and OAuth.
Executive view: MCP is an attempt to unify the "AI โ†” internal system" contract into one standard. It's the lever that avoids vendor lock-in: swap Claude for ChatGPT or Gemini, and the same MCP server estate keeps working.

2. MCP server catalog

The official MCP Registry (registry.modelcontextprotocol.io) lists 110+ servers โ€” a mix of Anthropic-official and community implementations.

Anthropic official servers

ServerPurpose
FilesystemRead / write local files
GitGit repository operations
GitHubGitHub Issues / PRs / Actions
Google DriveSearch and fetch files in Drive
SlackChannels, messages
NotionNotion databases / pages
LinearIssue tracking
FigmaDesign file reference
PostgresSQL execution
BigQueryData queries
MemoryLong-term memory (knowledge graph)
FetchURL fetch
Sequential ThinkingChain-of-thought
TimeClocks / time zones

Community servers

90+ additional implementations come from the community. Searchable via third-party indexes like Glama Registry (glama.ai). Strong coverage of business SaaS โ€” Salesforce, Jira, Confluence, Zendesk, HubSpot, and more.

3. Five executive workflows

Five practical, non-engineer workflows that become possible when executives themselves use Claude + MCP.

Workflow 1 ยท Slack triage

MCP Slack server โ†’ auto-generated morning Daily Digest per channel. Unread messages classified by priority; only the reply-worthy ones piped to email or a dashboard.

Executive view: Compresses "open all of Slack first thing in the morning" from 30 min to 5 min. The first breakwater between executives and the information flood.

Workflow 2 ยท Drive audit

MCP Google Drive โ†’ auto-log new and changed files from the last 7 days into Notion. Makes "who changed what when" visible; semi-automates access audits on confidential material.

Executive view: Effective as the evidence trail for J-SOX / internal controls. Weekly reports suitable for handover to the compliance function can be generated automatically.

Workflow 3 ยท GitHub roll-ups

MCP GitHub โ†’ weekly progress report (merged PRs, open issues, CI failure rate). Collapses the Monday-morning prep time for 1:1s and executive reports nearly to zero for engineering managers.

Executive view: "What did engineering ship this week?" becomes a one-glance answer. Can be automated through PDF generation for the night before the exec meeting.

Workflow 4 ยท Calendar integration

Multiple MCP servers in parallel (Google Calendar + Gmail + Slack) โ†’ auto-delivered "Executive Summary: your week" every Monday morning. Key meetings, prep materials, critical unread messages โ€” consolidated to one screen.

Executive view: The first step toward agent-ifying parts of an executive assistant's role. With or without a personal assistant, every executive gets the same information-organization quality.

Workflow 5 ยท Linear dashboard

MCP Linear โ†’ real-time project visibility. Blocker detection, effort-estimate auto-updates, early warnings on slip risk โ€” surfaced as a dashboard.

Executive view: The biggest value is shortening "how long until you notice it's late." Organizations that already run Linear company-wide extract the highest ROI.

4. The Skills system

Agent Skills are reusable modules. If MCP handles "external system connectivity," Skills handle "repeated workflow guidance" โ€” complementary layers. Every Skill is a single file: SKILL.md (YAML frontmatter + Markdown instructions).

SKILL.md structure

---
name: skill-name
description: what it does + when to use it
license: MIT (optional)
allowed-tools: Bash(git:*) Read (optional)
---

# Detailed instructions

Progressive disclosure

Skills use three-stage progressive loading so context isn't wasted:

  1. Metadata (~100 tokens): always loaded at startup. Claude only needs to know the name and description.
  2. Instructions (<5,000 tokens): loaded when the skill activates. Detailed runtime steps.
  3. Resources (variable): scripts/, templates, references โ€” pulled only when needed.

Effect: you can install 100+ skills and still keep context usage minimal.

agentskills.io standard

The industry-common spec announced by Anthropic in December 2025. Adopted by 26 tools (Cursor, GitHub Copilot, Claude Code, Gemini, Codex, Windsurf, โ€ฆ). One SKILL.md becomes portable across multiple AI tools.

5. Official Anthropic Skills

Main Skills published by Anthropic (github.com/anthropics/skills):

  • frontend-design: frontend design generation
  • systematic-debugging: systematic debugging
  • brainstorming: brainstorming
  • writing-plans: implementation planning
  • executing-plans: plan execution
  • test-driven-development: TDD
  • subagent-driven-development: subagent-driven development
  • requesting-code-review: requesting a code review
  • verification-before-completion: verify-before-done
  • finishing-a-development-branch: closing out a dev branch
  • receiving-code-review: receiving a review
  • using-git-worktrees: using git worktrees
  • using-superpowers: Superpowers skills meta-guide
  • mcp-builder: building MCP servers
  • skill-creator: skill authoring helper

Plus Pre-built Document Skills (PowerPoint, Excel, Word, PDF) usable on Desktop / Claude.ai.

6. Creating a skill

A skill is defined by a single Markdown file. The create-to-share flow:

  1. mkdir ~/.claude/skills/my-skill โ€” create the directory
  2. Write SKILL.md (frontmatter + instructions)
  3. Hot reload: file changes auto-detected, no Claude restart needed
  4. Packaging: bundle as <plugin>/skills/<name>/SKILL.md
  5. Custom marketplace: point settings.json at a GitHub repo URL โ†’ share skills internally
Executive view: This is the shortest path to "AI-ifying internal know-how". Drop the company's SOP (standard operating procedure) into a SKILL.md as-is, and every employee runs Claude with the same steps a veteran would use.

7. Skills vs subagents vs slash commands

Claude Code exposes three customization mechanisms with clearly different shapes.

TraitSkillSubagentSlash command
Auto-activationOn description matchManual onlyManual only
ContextContinues current threadIsolated (new context)Continues current thread
Use caseWorkflow guidanceDeep-dive researchOne-shot operation
ComplexityLow to mediumHighLow
Distributionplugin / marketplaceProject-local definitionCLAUDE.md

Picking between them

  • Repetitive workflow โ†’ Skill (e.g., weekly report creation)
  • Independent deep-dive task โ†’ Subagent (e.g., long research runs, high-volume file analysis)
  • One-shot simple command โ†’ Slash command (e.g., /deploy, /status)

8. Availability by surface

Which Claude surface you use determines what Skills and MCP you can run.

CapabilityClaude CodeDesktopClaude.aiMobile
Pre-built Skillsโœ—โœ“โœ“โœ—
Custom Skillsโœ“โœ“โœ“ (Pro+)โœ—
MCP (stdio)โœ“โœ“โœ—โœ—
MCP Connector (HTTP)โœ“โœ—โœ—โœ—
Caveat: Mobile supports neither Skills nor MCP. If executives will use Claude from a phone on the go, any Skill-dependent workflow needs a server-side implementation (Routines etc.).

9. Sharing & discovery

Skills and MCP servers distribute through two layers: the official marketplace and a company-internal custom marketplace.

Official marketplace

Anthropic's official skills install directly from inside Claude Code:

/plugin install document-skills@anthropic-agent-skills

Custom marketplace (internal)

Register your company's GitHub repository as a marketplace โ€” every employee then runs the same command to pull internal skills:

{
  "extraKnownMarketplaces": {
    "my-org": {
      "source": { "source": "github", "repo": "myorg/skills" }
    }
  }
}

โ†’ /plugin install my-feature@my-org pulls internal skills.

Executive view: IT can manage the "internal AI usage standard" in a single GitHub repo. Reduces per-tool procurement review while keeping governance and speed in balance.

10. Official sources

Primary references: MCP spec, server registry, Skills spec, Anthropic's official Skills collection, the Claude API / Claude Code Skills guides, and Anthropic Engineering blog posts. Pull from these at each validation stage of rollout. Aggregated in the Sources block below.

This page reflects information as of 2026-04-23. The MCP registry has grown multiple-fold in the year since launch โ€” re-check registry.modelcontextprotocol.io when the date matters.

Last verified: 2026-04-23
Sources: