Providers
A provider is a read-only template for an MCP server integration (like GitHub or Slack). To use a provider, create a deployment from it.
Providers object
Attributes
object
StringString representing the object's type
id
StringUnique provider identifier
name
StringDisplay name of the provider
description
StringNullableBrief description of the provider
slug
StringURL-friendly identifier
publisher
ObjectNullablecurrent_version
ObjectNullablecreated_at
DateTimestamp when created
updated_at
DateTimestamp when last updated
{"object": "provider","id": "pro_5gHjKlMnPqRsTuVw","name": "GitHub","description": "Connect to GitHub repositories, issues, and pull requests","slug": "github","publisher": {"object": "provider.publisher","id": "pub_9hJkLmNpQrStUvWx","name": "Acme Corp","description": "A leading provider of developer tools","slug": "acme-corp","image_url": "https://cdn.metorial.com/images/acme.png","created_at": "2025-09-15T10:30:00.000Z","updated_at": "2026-01-10T14:45:00.000Z"},"current_version": {"object": "provider.version","id": "prv_4dEfGhJkLmNpQrSt","version": "1.0.0","status": "released","created_at": "2025-09-15T10:30:00.000Z","updated_at": "2026-01-10T14:45:00.000Z"},"created_at": "2025-09-15T10:30:00.000Z","updated_at": "2026-01-10T14:45:00.000Z"}
List providers
Returns a paginated list of providers.
Query Parameters
limit
NumberOptionalMaximum number of items to return (1-100)
after
StringOptionalReturn items after this ID
before
StringOptionalReturn items before this ID
cursor
StringOptionalPagination cursor from a previous response
order
EnumOptionalSort order for results
publisher_id
UnionOptionalFilter by publisher ID(s)
curl -X GET "https://api.metorial.com/providers" \-H "Authorization: Bearer metorial_sk_..."
Get provider
Retrieves a specific provider by ID.
URL Parameters
provider_id
StringThe unique identifier for the provider
curl -X GET "https://api.metorial.com/providers/pro_Rm4Mnheq2bfEPhBhP7SY" \-H "Authorization: Bearer metorial_sk_..."
Update provider
Updates a provider.
URL Parameters
provider_id
StringThe unique identifier for the provider
Request Body
name
StringOptionaldescription
StringOptionalslug
StringOptionalimage
StringOptionalskills
Array of StringsOptionalList of skill tags for this provider
curl -X PATCH "https://api.metorial.com/providers/pro_Rm4Mnheq2bfEPhBhP7SY" \-H "Content-Type: application/json" \-H "Authorization: Bearer metorial_sk_..." \-d '{"name": "example_name","description": "example_description","slug": "example_slug","image": "example_image","skills": ["example_item"]}'