Concepts · Knowledge Graph

32 Concepts mit Relations

Der Knowledge Graph hinter den Recipes. Jedes Concept ist mit verwandten verlinkt (`REQUIRES`, `EXTENDS`, `ALTERNATIVE_TO`, `USES`, ...). Nutzbar als Navigation — oder als Lookup wenn Du wissen willst was ein Begriff genau bedeutet.

Commands · 1

mcp_installfree
claude mcp add
CLI command that registers an MCP server in ~/.claude.json.

Config Files · 4

agents_mdfree
AGENTS.md
Cross-tool variant of CLAUDE.md. Codex reads it. Cursor reads it. Symlink one to the other for one source of truth.
claude_mdfree
CLAUDE.md
Markdown file Claude Code reads at session start as system context. The single biggest leverage point in your setup.
settings_jsonfree
~/.claude/settings.json
JSON config for hooks, permissions, env vars. User-scoped. Auto-merged with project ./.claude/settings.json.
codex_config_tomlfree
~/.codex/config.toml
Codex equivalent of Claude Code's ~/.claude.json. TOML format. MCP servers, projects, features.

Features · 5

hooksfree
Hooks
Deterministic shell commands that run on Claude Code events. Hard guarantees the model cannot bypass.
memory_basicsfree
Memory basics
Persistent context across sessions. Default: ~/.claude/projects/<project>/memory/. Better: a memory MCP server.
permissionsfree
Permissions
Allow- and deny-lists in settings.json that auto-clear or block tool calls without prompting.
skillsfree
Skills
Markdown files Claude loads on demand based on natural-language triggers. Like slash commands but smarter.
subagentsfree
Subagents
Markdown files in ~/.claude/agents/ that spin up an isolated agent context for specific tasks.

MCP Servers · 6

brave_search_mcpfree
brave-search MCP
Brave's own crawled search index as an MCP server. Free 2k queries/month.
codebase_memory_mcpfree
codebase-memory-mcp
Indexes your repo into a Postgres-backed knowledge graph. 14 tools.
codegraphfree
codegraph
Deep code analysis on top of a code knowledge graph. 34 tools.
context7free
context7
Up-to-date library + framework docs as MCP tools. No API key needed.
github_mcpfree
github MCP
Official GitHub MCP server. 30+ tools for issues, PRs, code search, reviews.
mcp_nexfree
mcp-nex (StudioMeyer Memory)
Memory MCP server with 53 tools — sessions, learnings, decisions, knowledge graph, skills tracking.

Patterns · 15

audit_logteam
Audit log
Who did what when. Immutable record of every mutating operation.
dual_transportpro
Dual transport (stdio + HTTP)
One MCP server codebase that runs both as stdio subprocess (local) and Streamable HTTP (remote SaaS).
eu_ai_actteam
EU AI Act + GDPR
Compliance basics for small SaaS that touches EU users. Art. 52 transparency, art. 6 lawful basis.
health_endpointpro
/health endpoint
Liveness probe that monitoring + load balancers hit. Returns 200 + version + status.
idempotencyteam
Idempotency keys
Handle retries (Stripe webhooks, client retries) without double-charging or double-creating.
magic_linkpro
Magic-link auth
Email-based passwordless login. User clicks a one-time URL, server exchanges it for an access token.
mcp_basicsfree
MCP basics
Model Context Protocol — open standard for connecting AI clients (Claude, Codex, Cursor) to external tools.
multi_tenantpro
Multi-tenant SaaS
Single deployment serves many isolated tenants. Each tenant has its own data, no leaks.
oauth_pkcepro
OAuth 2.1 PKCE
Auth flow with code-challenge + code-verifier — secure for public clients without a stored client secret.
agent_researchteam
Orchestrated research (3 agents)
Spawn Research + Critic + Analyst in parallel on a topic, synthesize 3 reports into 1 verdict.
rate_limits_pgteam
Rate limits in Postgres
Atomic upsert with case-reset. No Redis needed for low-volume SaaS.
rlsteam
Row Level Security (Postgres)
Database-side tenant isolation. Defense in depth on top of app-level filtering.
sm_deploy_ritualteam
SM-deploy ritual
Codified production deploy: 5 phases (orient, pre-checks parallel, go/no-go, deploy, verify). Saves you from the "I forgot to check" failure mode.
ssh_batchingteam
SSH batching
Avoid fail2ban self-bans on your own servers. Pattern: max 5-10 SSH connections/hour, batch with && chains.
stripe_checkoutpro
Stripe Checkout
Hosted checkout flow for subscriptions. You redirect to Stripe, they redirect back with a session ID.

Services · 1

mcpizepro
MCPize
Cloud Run-backed deploy platform for MCP servers. One command from repo to https URL.