Skip to main content
Glama

simplifier-mcp

by SimplifierIO

connector-call-test

Execute connector calls with real input parameters to test functionality and verify results using actual data.

Instructions

#Test a Connector Call

Execute a connector call with provided input parameters for testing purposes. This allows you to test connector calls with real data and see the results.

Parameter Usage:

  • Each parameter requires a "name" (the field name) and a "value" (the actual data)

  • Parameter names must match the connector call's defined parameters

  • Values can be any JSON value (string, number, boolean, object, array). The connector call specifies the expected input data type. Important: In case you miss properties in the result, check whether a datatype other than Any is assigned as output data type and whether validateOut is set to true - in this case values will be filtered to fit the datatype.

Input Schema

NameRequiredDescriptionDefault
connectorNameYes
callNameYes
parametersNoInput parameters for the connector call

Input Schema (JSON Schema)

{ "properties": { "callName": { "type": "string" }, "connectorName": { "type": "string" }, "parameters": { "default": [], "description": "Input parameters for the connector call", "items": { "additionalProperties": false, "properties": { "name": { "description": "Parameter name", "type": "string" }, "value": { "description": "Parameter value - can be any JSON value" } }, "required": [ "name" ], "type": "object" }, "type": "array" } }, "required": [ "connectorName", "callName" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SimplifierIO/simplifier-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server