curl -X GET "https://api.danubeai.com/v1/skills/service/0e98ef7b-2d4c-4b8a-9f1e-6a7c3d5b2e10"
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "calendar-booking",
"description": "Find free slots and book meetings on a Cal.com calendar. Use when a user asks to schedule time with someone.",
"license": "Apache-2.0",
"compatibility": null,
"metadata": {
"version": "1.0"
},
"service_id": null,
"visibility": "public",
"created_at": "2026-09-01T12:00:00Z"
}
]
Skills
List Service Skills
List the skills linked to a service
GET
/
v1
/
skills
/
service
/
{service_id}
curl -X GET "https://api.danubeai.com/v1/skills/service/0e98ef7b-2d4c-4b8a-9f1e-6a7c3d5b2e10"
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "calendar-booking",
"description": "Find free slots and book meetings on a Cal.com calendar. Use when a user asks to schedule time with someone.",
"license": "Apache-2.0",
"compatibility": null,
"metadata": {
"version": "1.0"
},
"service_id": null,
"visibility": "public",
"created_at": "2026-09-01T12:00:00Z"
}
]
Overview
Returns the skills that are linked to a service, newest first. A skill is linked when it was created with thatservice_id. An unknown service ID returns an empty array, not 404.
Auth: None required.
The Python and TypeScript SDKs do not wrap this endpoint yet, and there is no MCP tool for it. Call it directly.
Path Parameters
string
required
The service UUID
Response
Returns an array of skill summary objects.string
Unique identifier for the skill
string
Skill name (lowercase, hyphens, 1-64 characters)
string
What the skill does and when to use it
string
License (e.g., “Apache-2.0”)
string
Environment requirements
object
Additional metadata from the SKILL.md frontmatter (author, version, etc.)
string
This listing does not load the value, so it is always
null here. The service is the one named in the path.string
private or publicstring
ISO 8601 timestamp
Example
curl -X GET "https://api.danubeai.com/v1/skills/service/0e98ef7b-2d4c-4b8a-9f1e-6a7c3d5b2e10"
[
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "calendar-booking",
"description": "Find free slots and book meetings on a Cal.com calendar. Use when a user asks to schedule time with someone.",
"license": "Apache-2.0",
"compatibility": null,
"metadata": {
"version": "1.0"
},
"service_id": null,
"visibility": "public",
"created_at": "2026-09-01T12:00:00Z"
}
]
