Weaviate · Capability

Weaviate REST API — mcp

Weaviate REST API — mcp. 3 operations. Lead operation: Weaviate MCP Streamable HTTP Endpoint. Self-contained Naftiko capability covering one Weaviate business surface.

Run with Naftiko Weaviatemcp

What You Can Do

POST
Mcppost — Weaviate MCP Streamable HTTP Endpoint
/v1/mcp
GET
Mcpget — Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events
/v1/mcp
DELETE
Mcpdelete — Weaviate Terminates An MCP Session
/v1/mcp

MCP Tools

weaviate-mcp-streamable-http-endpoint

Weaviate MCP Streamable HTTP Endpoint

weaviate-opens-sse-stream-receiving

Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events

read-only idempotent
weaviate-terminates-mcp-session

Weaviate Terminates An MCP Session

idempotent

Capability Spec

weaviate-mcp.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Weaviate REST API — mcp
  description: 'Weaviate REST API — mcp. 3 operations. Lead operation: Weaviate MCP Streamable HTTP Endpoint. Self-contained
    Naftiko capability covering one Weaviate business surface.'
  tags:
  - Weaviate
  - mcp
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WEAVIATE_API_KEY: WEAVIATE_API_KEY
capability:
  consumes:
  - type: http
    namespace: weaviate-mcp
    baseUri: http://localhost:8080
    description: Weaviate REST API — mcp business capability. Self-contained, no shared references.
    resources:
    - name: mcp
      path: /mcp
      operations:
      - name: mcppost
        method: POST
        description: Weaviate MCP Streamable HTTP Endpoint
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: mcpget
        method: GET
        description: Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: mcpdelete
        method: DELETE
        description: Weaviate Terminates An MCP Session
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WEAVIATE_API_KEY}}'
  exposes:
  - type: rest
    namespace: weaviate-mcp-rest
    port: 8080
    description: REST adapter for Weaviate REST API — mcp. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/mcp
      name: mcp
      description: REST surface for mcp.
      operations:
      - method: POST
        name: mcppost
        description: Weaviate MCP Streamable HTTP Endpoint
        call: weaviate-mcp.mcppost
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: mcpget
        description: Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events
        call: weaviate-mcp.mcpget
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: mcpdelete
        description: Weaviate Terminates An MCP Session
        call: weaviate-mcp.mcpdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: weaviate-mcp-mcp
    port: 9090
    transport: http
    description: MCP adapter for Weaviate REST API — mcp. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: weaviate-mcp-streamable-http-endpoint
      description: Weaviate MCP Streamable HTTP Endpoint
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: weaviate-mcp.mcppost
      outputParameters:
      - type: object
        mapping: $.
    - name: weaviate-opens-sse-stream-receiving
      description: Weaviate Opens An SSE Stream For Receiving MCP Server-Sent Events
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: weaviate-mcp.mcpget
      outputParameters:
      - type: object
        mapping: $.
    - name: weaviate-terminates-mcp-session
      description: Weaviate Terminates An MCP Session
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: weaviate-mcp.mcpdelete
      outputParameters:
      - type: object
        mapping: $.