openapi: 3.0.3
info:
title: Weaviate REST authz mcp API
description: '# Introduction
Weaviate is an open source, AI-native vector database that helps developers create intuitive and reliable AI-powered applications.
### Base Path
The base path for the Weaviate server is structured as `[YOUR-WEAVIATE-HOST]:[PORT]/v1`. As an example, if you wish to access the `schema` endpoint on a local instance, you would navigate to `http://localhost:8080/v1/schema`. Ensure you replace `[YOUR-WEAVIATE-HOST]` and `[PORT]` with your actual server host and port number respectively.
### Questions?
If you have any comments or questions, please feel free to reach out to us at the community forum [https://forum.weaviate.io/](https://forum.weaviate.io/).
### Issues?
If you find a bug or want to file a feature request, please open an issue on our GitHub repository for [Weaviate](https://github.com/weaviate/weaviate).
### Need more documentation?
For a quickstart, code examples, concepts and more, please visit our [documentation page](https://docs.weaviate.io/weaviate).'
version: 1.38.0-dev
servers:
- url: http://localhost:8080
description: Local Weaviate instance
security:
- ApiKeyAuth: []
- BearerAuth: []
tags:
- name: mcp
paths:
/mcp:
post:
summary: Weaviate MCP Streamable HTTP Endpoint
description: MCP Streamable HTTP endpoint. Handles JSON-RPC requests for tool discovery and invocation.
tags:
- mcp
operationId: mcp.post
responses:
'200':
description: JSON-RPC response or SSE stream
x-microcks-operation:
delay: 100
get:
summary: Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events
description: Opens an SSE stream for receiving MCP server-sent events.
tags:
- mcp
operationId: mcp.get
responses:
'200':
description: SSE event stream
x-microcks-operation:
delay: 100
delete:
summary: Weaviate Terminates An MCP Session
description: Terminates an MCP session.
tags:
- mcp
operationId: mcp.delete
responses:
'200':
description: Session terminated
x-microcks-operation:
delay: 100
components:
securitySchemes:
ApiKeyAuth:
type: apiKey
in: header
name: Authorization
description: API key authentication
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: OIDC/JWT bearer authentication