retrieve_extension
Retrieve extension settings by numeric ID from the Storyblok MCP Server. Specify ID and context ('org' or 'partner') to access organization or partner-level configurations.
Instructions
Retrieves the settings of a specific extension by its numeric ID.
Args:
extension_id (int): The numeric ID of the extension.
context (str): The context to retrieve the extension from.
Options are 'org' for organization-level or 'partner' for partner-level extensions.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | ||
extension_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"title": "Context",
"type": "string"
},
"extension_id": {
"title": "Extension Id",
"type": "integer"
}
},
"required": [
"extension_id",
"context"
],
"title": "retrieve_extensionArguments",
"type": "object"
}