Blog · AI Companies
🧠 AI Companies

Anthropic's GitHub Repos 2026: The Complete Builder's Index

📊 View 1-page infographic (share-ready PDF)

Anthropic publishes a substantial amount of open-source code on GitHub. For builders shipping on Claude, knowing this catalog saves real time — the SDK that makes Anthropic API integration trivial, the MCP servers that drop into your Claude Code config, the plugins library, the skills repo, the cookbook of working patterns. This post is the indexed builder's tour as of May 2026.

The org page

github.com/anthropics is the canonical org. Bookmark it. Repositories are added regularly — checking the org page monthly is the easiest way to discover new tooling.

Claude Code & agent tooling

SDKs

MCP servers and protocol

Model Context Protocol is the open standard Anthropic launched for connecting Claude to external tools. Anthropic maintains a reference suite of MCP servers:

For an iOS dev using Claude Code, the most useful MCP installs are: filesystem (built in), GitHub, fetch (web requests), and any vendor-specific ones for your stack (Railway, App Store Connect, etc.).

anthropics/claude-plugins-official

anthropics/claude-plugins-official is Anthropic's officially maintained set of Claude plugins — bundled capabilities that drop into Claude Code or Claude.ai to extend functionality. Categories typically include: developer workflows (code review, refactor agents), content (writing assistants), data (analytics agents), and admin (project management).

Installing a plugin is generally one command in Claude Code; the repo's README will have current instructions.

anthropics/skills

anthropics/skills is Anthropic's reference repository for Claude Skills — reusable instruction packs that Claude can load on demand. A skill is typically a Markdown file with a description, when-to-use guidance, optional tools, and example invocations.

Skills are the 2026 evolution of "system prompt templates" — instead of stuffing your system prompt with every possible instruction, you ship skills that Claude loads contextually when needed. Reduces context bloat, sharper specialization.

Community repositories like agentskills.io, skillsmp.com, and others publish third-party skills. We cover the ecosystem in detail in our Claude Skills Ecosystem post.

Cookbook & examples

Research, evaluations, and supporting tools

Community / how to engage

For a working iOS dev shipping on Claude, the four repos to bookmark are: anthropic-sdk-typescript (your backend), claude-code (your IDE), anthropic-cookbook (when stuck on "how do I do X"), and modelcontextprotocol/servers (when you want to add a capability to your agent).


See also: Claude at Maximum Efficiency, Agentic AI in Claude, Claude Skills Ecosystem, GitHub for Beginners.

Sources & References
  1. github.com/anthropics — the org page
  2. docs.anthropic.com — official documentation
  3. modelcontextprotocol.io — MCP spec