Vineyard Connection API

Connect to and disconnect from a vineyard server

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/vineyard-connection-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

vineyard-connection-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Vineyard Python Client Blobs Connection API
  description: The Vineyard Python client API provides programmatic access to the Vineyard in-memory immutable data manager (v6d), a CNCF project. Clients connect via IPC (UNIX domain socket) for zero-copy local access or via RPC (TCP) for remote access. The API supports storing, retrieving, naming, persisting, and deleting distributed in-memory objects.
  version: 0.19.0
  contact:
    name: Vineyard Community
    url: https://v6d.io/
  license:
    name: Apache 2.0
    url: https://github.com/v6d-io/v6d/blob/main/LICENSE
servers:
- url: ipc://{socket}
  description: IPC socket connection (local zero-copy access)
  variables:
    socket:
      default: /var/run/vineyard.sock
- url: tcp://{host}:{port}
  description: RPC TCP connection (remote access)
  variables:
    host:
      default: localhost
    port:
      default: '9600'
tags:
- name: Connection
  description: Connect to and disconnect from a vineyard server
paths:
  /connect:
    post:
      operationId: connectToServer
      summary: Connect to Server
      description: Establish a connection to a vineyard server via IPC socket or TCP endpoint. Returns a client object (IPCClient or RPCClient) for subsequent operations.
      tags:
      - Connection
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                socket:
                  type: string
                  description: UNIX domain socket path for IPC connection
                  example: /var/run/vineyard.sock
                host:
                  type: string
                  description: Hostname for RPC TCP connection
                port:
                  type: integer
                  description: Port number for RPC TCP connection
                  example: 9600
      responses:
        '200':
          description: Successfully connected to vineyard server
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientInfo'
        '503':
          description: Server unavailable or connection failed
components:
  schemas:
    ClientInfo:
      type: object
      description: Information about the established vineyard client connection
      properties:
        instance_id:
          type: integer
          description: The vineyard instance ID this client is connected to
        version:
          type: string
          description: Vineyard server version
        ipc_socket:
          type: string
          description: IPC socket path (for IPCClient)
        rpc_endpoint:
          type: string
          description: RPC endpoint (for RPCClient)
externalDocs:
  description: Vineyard Python API Reference
  url: https://v6d.io/notes/references/python-api.html