Skip to main content
GET
/
services
/
{serviceName}
Get a service
curl --request GET \
  --url http://localhost:7687/services/{serviceName}
{
  "name": "<string>",
  "type": "<string>",
  "source": "<string>",
  "description": "<string>",
  "hash": "<string>",
  "enabled": true,
  "configSchema": {},
  "secretsSchema": {}
}

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.

Path Parameters

serviceName
string
required

Normalized service name.

Minimum string length: 1

Response

Service details.

Complete service metadata payload returned by the service detail endpoint.

name
string
required

Normalized service name used as the manifest identifier.

Minimum string length: 1
type
string
required

Service adapter type declared by the manifest.

Minimum string length: 1
source
string
required

Normalized source used to install or update the manifest.

Minimum string length: 1
description
string
required

Human-readable service description.

hash
string
required

Content hash of the installed manifest definition.

Minimum string length: 1
enabled
boolean
required

Whether the service is enabled for staging and execution.

configSchema
object
required

JSON Schema describing the service configuration object.

secretsSchema
object
required

JSON Schema describing the service secrets object.

Last modified on May 14, 2026