We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/atree1023/snc-cribl-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
flatten.json•1.21 KiB
{
"id": "flatten",
"schema": {
"type": "object",
"title": "",
"properties": {
"fields": {
"type": "array",
"title": "Fields",
"description": "List of top-level fields to include for flattening. Supports * wildcards, except when used on internal fields. Defaults to empty array, which means all fields.",
"items": {
"type": "string",
"pattern": "^(?!__.*\\*).*$",
"errorMessage": {
"pattern": "Internal fields cannot be used with wildcards."
}
},
"default": []
},
"prefix": {
"type": "string",
"title": "Prefix",
"description": "Prefix string for flattened field names. Defaults to empty.",
"default": ""
},
"depth": {
"type": "number",
"title": "Depth",
"description": "Number representing the nested levels to consider for flattening. Defaults to 5. Minimum should be 1.",
"default": 5,
"minimum": 1
},
"delimiter": {
"type": "string",
"title": "Delimiter",
"description": "Delimiter to be used for flattening. Defaults to underscore.",
"default": "_"
}
}
}
}