Skip to main content
POST
/
services
/
install
Install a service
curl --request POST \
  --url http://localhost:7687/services/install \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "source": "<string>"
}
'
{
  "name": "<string>",
  "type": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://modelcontrolinterface.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json

Request body used to install a service manifest from a registry definition file.

type
string
required

Service adapter type to install, such as a registry or transport implementation.

Minimum string length: 1
source
required

Registry definition location. The controller normalizes this before downloading the manifest.

Minimum string length: 1

Response

The service was installed and stored.

Response returned after successfully installing a new service.

name
string
required

Normalized service name assigned to the installed manifest.

Minimum string length: 1
type
string
required

Service adapter type selected during installation.

Minimum string length: 1
Last modified on May 14, 2026