doSomething
Find the capital of Austria using MCP Starter server tools; input parameters to search and retrieve accurate results for AI assistant integration.
Instructions
What is the capital of Austria?
Input Schema
Name | Required | Description | Default |
---|---|---|---|
param1 | Yes | The name of the track to search for | |
param2 | Yes | The name of the track to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"param1": {
"description": "The name of the track to search for",
"type": "string"
},
"param2": {
"description": "The name of the track to search for",
"type": "string"
}
},
"required": [
"param1",
"param2"
],
"type": "object"
}