#integrations
7 listings tagged integrations.
API Client Patterns
Build resilient API clients β timeouts, retries with backoff, pagination, and typed errors. Use when integrating a third-party API or writing an SDK/wrapper.
Everything MCP
Official MCP reference server exercising prompts, resources, and tools β a test/demo server for exploring MCP features. Use to learn or debug MCP integrations.
Fetch MCP
Official MCP server for fetching web content and converting it to clean markdown for LLM use. Use to let an agent read web pages.
Filesystem MCP
Official MCP server for secure file operations with configurable access controls β read, write, and search files. Use to give an agent scoped local filesystem access.
OAuth 2.0 Flows
Implement OAuth 2.0 correctly β pick the right flow, use PKCE, and store tokens safely. Use when adding "sign in withβ¦", third-party API auth, or reviewing an OAuth integration.
Retry & Backoff
Retry failures without making outages worse β exponential backoff, jitter, idempotency, and caps. Use when adding retries to network/DB/queue calls or debugging retry storms.
Webhook Design
Design webhooks that are reliable and secure β signed payloads, idempotency, retries, and versioning β on both sender and receiver side. Use when building or consuming webhooks.