retrieve_field_plugin
Retrieve a specific field plugin by its ID within a defined context (space, org, or partner) to manage and access plugin data in Storyblok MCP Server.
Instructions
Retrieves a single field plugin by its ID in the specified context.
Args:
field_type_id (int): Numeric ID of the field plugin.
context (str): 'space', 'org', or 'partner'.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | No | space | |
field_type_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"default": "space",
"title": "Context",
"type": "string"
},
"field_type_id": {
"title": "Field Type Id",
"type": "integer"
}
},
"required": [
"field_type_id"
],
"title": "retrieve_field_pluginArguments",
"type": "object"
}