Stackmint Clients API
The Clients API from Stackmint — 9 operation(s) for clients.
The Clients API from Stackmint — 9 operation(s) for clients.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/stackmint-clients-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Stackmint Platform Admin Clients API
version: 1.0.0
description: 'Stackmint is a governed execution platform for enterprise AI workflows.
REST API for managing clients, branches (workflows), buds (atomic units),
runs, and MCP-compatible LLM tools.
'
contact:
name: Stackmint
url: https://stackmint.ai
servers:
- url: https://api.stackmint.ai/v1
description: Stackmint Platform API
security:
- BearerAuth: []
OrgId: []
tags:
- name: Clients
paths:
/clients:
get:
summary: List clients
description: Admin-only. Returns all clients in the organization.
responses:
'200':
description: List of clients
tags:
- Clients
/clients/{clientId}:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
get:
summary: Retrieve a client
responses:
'200':
description: Client object
tags:
- Clients
/clients/{clientId}/branches:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
get:
summary: List branches (workflows) for a client
responses:
'200':
description: List of branches
tags:
- Clients
/clients/{clientId}/branches/{branchId}/run:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
- in: path
name: branchId
required: true
schema:
type: string
post:
summary: Execute a branch (synchronous or asynchronous)
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
input:
type: object
async:
type: boolean
responses:
'200':
description: Branch run result or run handle
tags:
- Clients
/clients/{clientId}/runs/{runId}:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
- in: path
name: runId
required: true
schema:
type: string
get:
summary: Check the status of a branch run
responses:
'200':
description: Run status object
tags:
- Clients
/clients/{clientId}/buds:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
get:
summary: List atomic units (buds) for a client
responses:
'200':
description: List of buds
tags:
- Clients
/clients/{clientId}/buds/{budId}/run:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
- in: path
name: budId
required: true
schema:
type: string
post:
summary: Execute an individual bud
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
input:
type: object
responses:
'200':
description: Bud run result
tags:
- Clients
/clients/{clientId}/mcp/tools:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
get:
summary: List MCP-compatible LLM tools available to the client
responses:
'200':
description: List of tools
tags:
- Clients
/clients/{clientId}/mcp/tools/{toolId}/invoke:
parameters:
- in: path
name: clientId
required: true
schema:
type: string
- in: path
name: toolId
required: true
schema:
type: string
post:
summary: Invoke an MCP-compatible LLM tool
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
arguments:
type: object
responses:
'200':
description: Tool invocation result
tags:
- Clients
components:
securitySchemes:
BearerAuth:
type: http
scheme: bearer
bearerFormat: API Key
description: 'Authorization: Bearer YOUR_API_KEY'
OrgId:
type: apiKey
in: header
name: X-Stackmint-Org-Id
description: Stackmint organization identifier.