Static API key authentication using Bearer token scheme.
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
API keys can be generated in your superglue dashboard.
Tool details
A multi-step workflow tool that executes one or more protocol-specific operations
"550e8400-e29b-41d4-a716-446655440000"
Ordered execution steps that make up this tool
1"Web Search"
Semantic version string (major.minor.patch)
"2.1.0"
Human-readable instruction describing what the tool does
"Search the web for the given query and return relevant results"
JSON Schema for tool inputs
{
"type": "object",
"properties": {
"query": { "type": "string" },
"maxResults": { "type": "integer", "default": 10 }
},
"required": ["query"]
}JSON Schema for tool outputs (after transformations applied)
JavaScript function for final output transformation. Format: (sourceData) => expression
"(sourceData) => sourceData.map(item => ({ id: item.id, title: item.name }))"