curl --request POST \
--url https://api.checkfu.com/v1/agents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-beta: <checkfu-beta>' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"model": "<string>",
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": [
"<string>"
]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
]
}
'import requests
url = "https://api.checkfu.com/v1/agents"
payload = {
"model": "<string>",
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": ["<string>"]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": True,
"permission_policy": { "type": "always_allow" }
}
],
"default_config": {
"enabled": True,
"permission_policy": { "type": "always_allow" }
}
}
]
}
headers = {
"checkfu-version": "<checkfu-version>",
"checkfu-beta": "<checkfu-beta>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'checkfu-beta': '<checkfu-beta>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: '<string>',
name: '<string>',
description: '<string>',
mcp_servers: [{type: 'url', name: '<string>', url: '<string>'}],
metadata: {},
multiagent: {type: 'coordinator', agents: ['<string>']},
skills: [{type: 'anthropic', skill_id: '<string>', version: '<string>'}],
system: '<string>',
tools: [
{
type: 'agent_toolset_20260401',
configs: [
{
name: 'bash',
type: 'bash',
enabled: true,
permission_policy: {type: 'always_allow'}
}
],
default_config: {enabled: true, permission_policy: {type: 'always_allow'}}
}
]
})
};
fetch('https://api.checkfu.com/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => '<string>',
'name' => '<string>',
'description' => '<string>',
'mcp_servers' => [
[
'type' => 'url',
'name' => '<string>',
'url' => '<string>'
]
],
'metadata' => [
],
'multiagent' => [
'type' => 'coordinator',
'agents' => [
'<string>'
]
],
'skills' => [
[
'type' => 'anthropic',
'skill_id' => '<string>',
'version' => '<string>'
]
],
'system' => '<string>',
'tools' => [
[
'type' => 'agent_toolset_20260401',
'configs' => [
[
'name' => 'bash',
'type' => 'bash',
'enabled' => true,
'permission_policy' => [
'type' => 'always_allow'
]
]
],
'default_config' => [
'enabled' => true,
'permission_policy' => [
'type' => 'always_allow'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-beta: <checkfu-beta>",
"checkfu-version: <checkfu-version>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/agents"
payload := strings.NewReader("{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("checkfu-beta", "<checkfu-beta>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/agents")
.header("checkfu-version", "<checkfu-version>")
.header("checkfu-beta", "<checkfu-beta>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["checkfu-beta"] = '<checkfu-beta>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"archived_at": "<string>",
"created_at": "<string>",
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": [
{
"type": "agent",
"id": "<string>",
"version": 1
}
]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"workload_trust": {
"declaration": {
"value": "trusted",
"recorded_at": "<string>"
},
"facts": {
"authorship": "organization_engineer",
"source_review": "workspace_controlled",
"execution_plane": "organization_local",
"input_exposure": {
"source_build": "controlled",
"ingress": "controlled",
"mounts": "controlled",
"installations": "controlled",
"content_capabilities": "controlled"
}
},
"effective": "trusted"
},
"type": "agent",
"updated_at": "<string>",
"version": 1
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Create an Agent
Creates one CMA-compatible Workspace Agent and atomically creates immutable Version 1. The request carries model, name, optional system, tools, MCP servers, skills, coordinator roster, description, and metadata; defaults are resolved into the returned Agent. Send an Idempotency-Key to make retries recover the same Agent.
Checkfu support posture: alpha; hosted. Required evidence journey: agent-definition. Deployment-specific readiness and the latest proven release are available from GET /v1/support/capabilities.
curl --request POST \
--url https://api.checkfu.com/v1/agents \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'checkfu-beta: <checkfu-beta>' \
--header 'checkfu-version: <checkfu-version>' \
--data '
{
"model": "<string>",
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": [
"<string>"
]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
]
}
'import requests
url = "https://api.checkfu.com/v1/agents"
payload = {
"model": "<string>",
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": ["<string>"]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": True,
"permission_policy": { "type": "always_allow" }
}
],
"default_config": {
"enabled": True,
"permission_policy": { "type": "always_allow" }
}
}
]
}
headers = {
"checkfu-version": "<checkfu-version>",
"checkfu-beta": "<checkfu-beta>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'checkfu-version': '<checkfu-version>',
'checkfu-beta': '<checkfu-beta>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: '<string>',
name: '<string>',
description: '<string>',
mcp_servers: [{type: 'url', name: '<string>', url: '<string>'}],
metadata: {},
multiagent: {type: 'coordinator', agents: ['<string>']},
skills: [{type: 'anthropic', skill_id: '<string>', version: '<string>'}],
system: '<string>',
tools: [
{
type: 'agent_toolset_20260401',
configs: [
{
name: 'bash',
type: 'bash',
enabled: true,
permission_policy: {type: 'always_allow'}
}
],
default_config: {enabled: true, permission_policy: {type: 'always_allow'}}
}
]
})
};
fetch('https://api.checkfu.com/v1/agents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.checkfu.com/v1/agents",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'model' => '<string>',
'name' => '<string>',
'description' => '<string>',
'mcp_servers' => [
[
'type' => 'url',
'name' => '<string>',
'url' => '<string>'
]
],
'metadata' => [
],
'multiagent' => [
'type' => 'coordinator',
'agents' => [
'<string>'
]
],
'skills' => [
[
'type' => 'anthropic',
'skill_id' => '<string>',
'version' => '<string>'
]
],
'system' => '<string>',
'tools' => [
[
'type' => 'agent_toolset_20260401',
'configs' => [
[
'name' => 'bash',
'type' => 'bash',
'enabled' => true,
'permission_policy' => [
'type' => 'always_allow'
]
]
],
'default_config' => [
'enabled' => true,
'permission_policy' => [
'type' => 'always_allow'
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json",
"checkfu-beta: <checkfu-beta>",
"checkfu-version: <checkfu-version>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.checkfu.com/v1/agents"
payload := strings.NewReader("{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("checkfu-version", "<checkfu-version>")
req.Header.Add("checkfu-beta", "<checkfu-beta>")
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.checkfu.com/v1/agents")
.header("checkfu-version", "<checkfu-version>")
.header("checkfu-beta", "<checkfu-beta>")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.checkfu.com/v1/agents")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["checkfu-version"] = '<checkfu-version>'
request["checkfu-beta"] = '<checkfu-beta>'
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"model\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"mcp_servers\": [\n {\n \"type\": \"url\",\n \"name\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"metadata\": {},\n \"multiagent\": {\n \"type\": \"coordinator\",\n \"agents\": [\n \"<string>\"\n ]\n },\n \"skills\": [\n {\n \"type\": \"anthropic\",\n \"skill_id\": \"<string>\",\n \"version\": \"<string>\"\n }\n ],\n \"system\": \"<string>\",\n \"tools\": [\n {\n \"type\": \"agent_toolset_20260401\",\n \"configs\": [\n {\n \"name\": \"bash\",\n \"type\": \"bash\",\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n ],\n \"default_config\": {\n \"enabled\": true,\n \"permission_policy\": {\n \"type\": \"always_allow\"\n }\n }\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"archived_at": "<string>",
"created_at": "<string>",
"model": {
"id": "<string>",
"effort": {
"type": "low"
},
"inference_geo": "global",
"speed": "standard"
},
"name": "<string>",
"description": "<string>",
"mcp_servers": [
{
"type": "url",
"name": "<string>",
"url": "<string>"
}
],
"metadata": {},
"multiagent": {
"type": "coordinator",
"agents": [
{
"type": "agent",
"id": "<string>",
"version": 1
}
]
},
"skills": [
{
"type": "anthropic",
"skill_id": "<string>",
"version": "<string>"
}
],
"system": "<string>",
"tools": [
{
"type": "agent_toolset_20260401",
"configs": [
{
"name": "bash",
"type": "bash",
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
],
"default_config": {
"enabled": true,
"permission_policy": {
"type": "always_allow"
}
}
}
],
"workload_trust": {
"declaration": {
"value": "trusted",
"recorded_at": "<string>"
},
"facts": {
"authorship": "organization_engineer",
"source_review": "workspace_controlled",
"execution_plane": "organization_local",
"input_exposure": {
"source_build": "controlled",
"ingress": "controlled",
"mounts": "controlled",
"installations": "controlled",
"content_capabilities": "controlled"
}
},
"effective": "trusted"
},
"type": "agent",
"updated_at": "<string>",
"version": 1
}{
"error": {
"type": "validation.malformed",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-malformed"
}
}{
"error": {
"type": "auth.invalid_key",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-invalid-key"
}
}{
"error": {
"type": "auth.disabled_tenancy",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#auth-disabled-tenancy"
}
}{
"error": {
"type": "validation.conflict",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#validation-conflict"
}
}{
"error": {
"type": "budget.exceeded",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#budget-exceeded"
}
}{
"error": {
"type": "runtime.internal",
"message": "<string>",
"more": "https://docs.checkfu.com/reference/errors#runtime-internal"
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
2026-08-27 255Body
1 - 25520Show child attributes
Show child attributes
at most 16 correlation pairs with keys of 1 to 64 characters
Show child attributes
Show child attributes
Show child attributes
Show child attributes
- Option 1
- Option 2
Show child attributes
Show child attributes
128- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Response
BetaManagedAgentsAgent
^agent_[0-9a-f]{32}$Show child attributes
Show child attributes
1 - 255Show child attributes
Show child attributes
at most 16 correlation pairs with keys of 1 to 64 characters
Show child attributes
Show child attributes
Show child attributes
Show child attributes
- Option 1
- Option 2
Show child attributes
Show child attributes
- Option 1
- Option 2
- Option 3
Show child attributes
Show child attributes
Show child attributes
Show child attributes
agent x > 0