Developers & API
Developers & API
API documentation, MCP integration, and developer resources
API Overview
BuildStability Developer API
Table of Contents
1. [Overview](overview)
2. [API Access Methods](api-access-methods)
- [MCP Server](mcp-server-mo...
MCP Server Integration
Model Context Protocol (MCP) Integration
The MCP server allows AI assistants like Claude to directly interact with your BuildStability account.
Avai...
Authentication & Security
Authentication Guide
BuildStability uses Supabase Auth for authentication. All API requests require a valid JWT.
Getting Your Access Token:
Method ...
Rate Limits & Best Practices
Rate Limits
BuildStability enforces rate limits to ensure fair usage:
MCP Server Rate Limits (per 15-minute window):
- Free Trial: 25 requests
- Ess...
Error Handling
Error Handling
All MCP errors follow the JSON-RPC 2.0 standard:
```json
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32602,
"messa...
REST API v1 - Professional API Access
REST API v1 - Professional API Access
BuildStability provides a professional REST API for third-party developers and integrations. This API uses indu...
REST API Guide
REST API v1
Base: `/api/v1` | Auth: OAuth 2.0 Client Credentials (Bearer token)
Resources
| Resource | GET | POST | PUT | DELETE |
|----------|--...
OAuth 2.0 for REST API
OAuth 2.0 Client Credentials
Used by the REST API v1 for machine-to-machine access (integrations, dashboards, server-side apps).
1. Create an OAut...