Developer resources

VitaminLabs API & developer resources.

VitaminLabs exposes its agent catalogue, client case studies, and company information through a read-only public API and a Model Context Protocol (MCP) server, so AI agents can read and reason about our work programmatically. Everything here is public and requires no authentication or API key.

01: REST API

A JSON REST API rooted at https://www.vitaminlabs.co/api/v1. All endpoints accept GET requests and are CORS-enabled for any origin.

GET/api/v1API index and endpoint discovery
GET/api/v1/agentsList the full AI agent catalogue
GET/api/v1/agents/{id}Get a single agent by id (e.g. A-01)
GET/api/v1/casesList client case studies
GET/api/v1/cases/{slug}Get a single case study by slug (e.g. aiblox)
GET/api/v1/companyCompany info, founders, and engagement tiers
curl https://www.vitaminlabs.co/api/v1/agents
02: OpenAPI specification

The full API surface is described by an OpenAPI 3.1 document, served at a predictable URL so agents and tooling can discover and consume it automatically.

https://www.vitaminlabs.co/openapi.json

curl https://www.vitaminlabs.co/openapi.json
03: MCP server

A Model Context Protocol (MCP) server exposes the same content as tools over the Streamable HTTP transport, so assistants like Claude and ChatGPT can call VitaminLabs data natively. Point your MCP client at:

https://www.vitaminlabs.co/api/mcp

list_agentsList every AI agent in the catalogue
get_agentGet a single agent by id
list_casesList client case studies
get_caseGet a single case study by slug
get_company_infoCompany info, founders, and engagement tiers
04: Questions

Building something with the VitaminLabs API or want a capability that isn't here yet? Reach out or email team@vitaminlabs.co.