fetch-embeddings
Retrieve embeddings for a file using its ID and a specific query, enabling vector search and context extraction via the Supavec MCP Server.
Instructions
Fetch embeddings for a file by ID and query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_id | Yes | ID of the file to get embeddings for | |
query | Yes | Query to search for in the file |
Input Schema (JSON Schema)
{
"properties": {
"file_id": {
"description": "ID of the file to get embeddings for",
"type": "string"
},
"query": {
"description": "Query to search for in the file",
"type": "string"
}
},
"required": [
"file_id",
"query"
],
"type": "object"
}