Iaptic MCP Server

Official

iaptic_switch_app

Switch to a different Iaptic app.

  • Allows temporarily using a different app's credentials
  • All subsequent API calls will use the new app name and API key
  • If using a master key, only the app name needs to be changed
  • Useful for managing multiple apps in the same session
  • Required: appName parameter (apiKey required only if not using master key)

Input Schema

NameRequiredDescriptionDefault
apiKeyNoAPI key for the app (not required if using master key)
appNameYesName of the app to switch to

Input Schema (JSON Schema)

{ "properties": { "apiKey": { "description": "API key for the app (not required if using master key)", "type": "string" }, "appName": { "description": "Name of the app to switch to", "type": "string" } }, "required": [ "appName" ], "type": "object" }