API Development Stack
Everything you need to develop and document APIs. Design, testing, documentation, and monitoring.
Get this bundle
Who This Bundle Is For
Backend developers and architects designing and building APIs.
What's Included
MCP Servers
PostgreSQL — database operations. Queries, migrations, optimization.
Memory — persist API design context across sessions.
Sentry — error monitoring and API performance tracking.
Skills
API Design Spec — design RESTful and GraphQL APIs.
API Authentication — OAuth2, JWT, API keys, and other authentication methods.
API Integration Test — write integration tests.
API Reference Guide — create developer documentation.
Agents
API Integration Specialist — integrate with external services.
API Tester — test APIs and identify vulnerabilities.
GraphQL Architect — design GraphQL schemas.
Backend Architect — backend system architecture.
How to Use
- Design your API with API Design Spec
- Build endpoints using Backend Architect
- Set up authentication with API Authentication
- Write tests with API Tester
- Document with API Reference Guide
Example Prompt
Design a REST API for an order management service:
Resources:
- Orders (create, update, cancel)
- Products (catalog, search)
- Users (registration, profile)
Requirements:
- Pagination and filtering
- Versioning v1/v2
- Rate limiting
- JWT authentication
API Structure
api/v1/
├── /auth
│ ├── POST /login
│ ├── POST /register
│ └── POST /refresh
├── /users
│ ├── GET /me
│ └── PATCH /me
├── /products
│ ├── GET /
│ ├── GET /:id
│ └── GET /search
└── /orders
├── GET /
├── POST /
├── GET /:id
├── PATCH /:id
└── DELETE /:id
Deliverables
- Well-designed API
- Complete documentation
- Test coverage
- Monitoring and alerting
