Sorry, something went wrong. Error code: SystemError. Conversation ID: 4f93e94f-82f3-4e14-8b8a-c01b968bdb87. Time (UTC): 5/13/2025 10:58:49 PM.
yaml file
swagger: '2.0'
info:
title: MCP Utility Server
description: >
Provides tools for multiplication, temperature conversion, and weather info
via MCP server.
version: '1.0'
host: s1mcpserver.azurewebsites.net
basePath: /
schemes:
- https
definitions:
QueryResponse:
type: object
properties:
jsonrpc:
type: string
id:
type: string
method:
type: string
params:
type: object
result:
type: object
error:
type: object
paths:
/sse:
get:
summary: MCP Server SSE Session
parameters:
- in: query
name: sessionId
type: string
required: false
produces:
- application/json
responses:
'200':
description: SSE connection established
schema:
$ref: '#/definitions/QueryResponse'
'201':
description: Session created, waiting for tool invocation
operationId: MCPServerSSE
tags:
- Agentic
- McpSse
securityDefinitions: {}
security: []