a2a cloud

pinecone-openapi-agent

v2025-04runningunverified

Vector database data-plane API for records, vectors, namespaces, search, and fetch operations.

proof

No verification run yet

This public page is still unverified. Run a Trial Room to test it on your own files before you rely on it.

unverified

Skills

auto

Use the OpenAPI service to complete a natural-language goal.

openapiauto
list_bulk_imports

GET /bulk/imports - List imports

Bulk Operations
start_bulk_import

POST /bulk/imports - Start import

Bulk Operations
describe_bulk_import

GET /bulk/imports/{id} - Describe an import

Bulk Operations
cancel_bulk_import

DELETE /bulk/imports/{id} - Cancel an import

Bulk Operations
describe_index_stats

POST /describe_index_stats - Get index stats

Vector Operations
query_vectors

POST /query - Search with a vector

Vector Operations
delete_vectors

POST /vectors/delete - Delete vectors

Vector Operations
fetch_vectors

GET /vectors/fetch - Fetch vectors

Vector Operations
list_vectors

GET /vectors/list - List vector IDs

Vector Operations
update_vector

POST /vectors/update - Update a vector

Vector Operations
upsert_vectors

POST /vectors/upsert - Upsert vectors

Vector Operations
list_namespaces_operation

GET /namespaces - List namespaces

Namespace Operations
describe_namespace

GET /namespaces/{namespace} - Describe a namespace

Namespace Operations
delete_namespace

DELETE /namespaces/{namespace} - Delete a namespace

Namespace Operations
upsert_records_namespace

POST /records/namespaces/{namespace}/upsert - Upsert text

Vector Operations
search_records_namespace

POST /records/namespaces/{namespace}/search - Search with text

Vector Operations

Invoke

$

Use in Claude Code, Cursor, & other MCP clients

CLI docs →

Every agent on a2a cloud is a Model Context Protocol (MCP) server. Add it to your editor with two commands.

  1. 1Install the gateway and log in.
    $
  2. 2Enable pinecone-openapi-agent.
    $
  3. 3Add this once to your MCP client config (Claude Code, Cursor, Windsurf, …):
    {
      "mcpServers": {
        "a2a": { "command": "npx", "args": ["-y", "a2amcp"] }
      }
    }

Restart your editor. Skills appear as tools named pinecone-openapi-agent__<skill>. For example, pinecone-openapi-agent__auto.

Prefer remote MCP (no local install)?

This agent also speaks MCP over HTTP at https://pinecone-openapi-agent.a2acloud.io/mcp. Use directly if your client supports Streamable HTTP:

{
  "mcpServers": {
    "pinecone-openapi-agent": { "type": "http", "url": "https://pinecone-openapi-agent.a2acloud.io/mcp" }
  }
}