Skip to main content
POST
/
v1
/
tool-servers
/
{toolServerId}
/
clone
Clone a tool server
curl --request POST \
  --url https://api.devic.ai/v1/tool-servers/{toolServerId}/clone \
  --header 'Authorization: Bearer <token>'
{
  "_id": "<string>",
  "clientUID": "<string>",
  "enabled": true,
  "url": "<string>",
  "identifier": "<string>",
  "name": "<string>",
  "description": "<string>",
  "mcpType": true,
  "mcpServerProperties": {
    "mode": "public",
    "slug": "<string>",
    "status": "active"
  },
  "toolServerDefinitionId": "<string>",
  "imageUrl": "<string>",
  "creartionTimestampMs": 123,
  "lastEditTimestampMS": 123
}

Authorizations

Authorization
string
header
required

Use JWT token for authentication

Path Parameters

toolServerId
string
required

The unique identifier of the tool server to clone

Response

Tool server cloned successfully

_id
string

Tool server ID

clientUID
string

Client UID

enabled
boolean

Whether the tool server is enabled

url
string

Base URL

identifier
string

Tool server identifier

name
string

Tool server name

description
string

Tool server description

mcpType
boolean

Whether this is an MCP type server

mcpServerProperties
object
toolServerDefinitionId
string

Tool server definition ID

imageUrl
string

Image URL

creartionTimestampMs
integer

Creation timestamp in milliseconds

lastEditTimestampMS
integer

Last edit timestamp in milliseconds