pinecone-openapi-agent
v2025-04runningunverifiedVector database data-plane API for records, vectors, namespaces, search, and fetch operations.
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.
Skills
Use the OpenAPI service to complete a natural-language goal.
GET /bulk/imports - List imports
POST /bulk/imports - Start import
GET /bulk/imports/{id} - Describe an import
DELETE /bulk/imports/{id} - Cancel an import
POST /describe_index_stats - Get index stats
POST /query - Search with a vector
POST /vectors/delete - Delete vectors
GET /vectors/fetch - Fetch vectors
GET /vectors/list - List vector IDs
POST /vectors/update - Update a vector
POST /vectors/upsert - Upsert vectors
GET /namespaces - List namespaces
GET /namespaces/{namespace} - Describe a namespace
DELETE /namespaces/{namespace} - Delete a namespace
POST /records/namespaces/{namespace}/upsert - Upsert text
POST /records/namespaces/{namespace}/search - Search with text
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.
- 1Install the gateway and log in.$
- 2Enable pinecone-openapi-agent.$
- 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" }
}
}