All-in-one platform for search, recommendations, RAG, and analytics offered via API
- • Core MCP protocol features implemented (20/40)
- • GitHub community is developing well (16/20)
- • Optimal dependency management (20/20)
- • Full deployment maturity (10/10)
- • Documentation (8/8)
- • Archestra MCP Trust score badge is missing
{
"trieve-mcp-server-configured": {
"command": "npx",
"args": [
"trieve-mcp-server@latest"
],
"env": {
"TRIEVE_API_KEY": "$TRIEVE_API_KEY",
"TRIEVE_ORGANIZATION_ID": "$TRIEVE_ORGANIZATION_ID",
"TRIEVE_DATASET_ID": "$TRIEVE_DATASET_ID"
}
},
"trieve-mcp-server-with-args": {
"command": "npx",
"args": [
"trieve-mcp-server",
"--api-key",
"<your-api-key>",
"--org-id",
"<your-org-id>",
"--dataset-id",
"<dataset-id>"
],
"env": {}
}
}trieve-mcp-server
A Model Context Protocol (MCP) server that provides agentic tools for interacting with the Trieve API. This server enables AI agents to search and interact with Trieve datasets through a standardized interface.
Features
- Search across Trieve datasets using semantic search
- List and access dataset information
- Support for both environment variables and command-line arguments
- Built with TypeScript for type safety and better developer experience
Installation
Installing via Smithery
To install Trieve for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install trieve-mcp-server --client claude
Manual Installation
npm install trieve-mcp-server
Configuration
Copy the .env.dist file to .env and fill in your Trieve credentials:
cp .env.dist .env
Required environment variables:
TRIEVE_API_KEY: Your Trieve API key from dashboard.trieve.aiTRIEVE_ORGANIZATION_ID: Your Trieve organization ID from dashboard.trieve.ai
Optional environment variables:
TRIEVE_DATASET_ID: Specific dataset ID to use (if not provided via CLI)
Command-line arguments (override environment variables):
trieve-mcp-server --api-key <your-api-key> --org-id <your-org-id> [--dataset-id <dataset-id>]
Usage
Starting the Server
trieve-mcp-server
Available Tools
search
Search through a specified Trieve dataset.
Parameters:
query(string): The search querydatasetId(string): ID of the dataset to search insearchType(string, optional): "semantic" (default), "fulltext", "hybrid", or "bm25"filters(object, optional): Advanced filtering optionshighlightOptions(object, optional): Customize result highlightingpage(number, optional): Page number, default 1pageSize(number, optional): Results per page, default 10
Example:
{
"query": "example search query",
"datasetId": "your-dataset-id",
"searchType": "semantic",
"page": 1,
"pageSize": 10
}
Available Resources
The server exposes Trieve datasets as resources with the following URI format:
trieve://datasets/{dataset-id}
Usage with Claude Desktop
The Trieve MCP Server supports MCP integration with Claude Desktop. Place the following in your Claude Desktop's claude_desktop_config.json.
{
"mcpServers": {
"trieve-mcp-server": {
"command": "npx",
"args": ["trieve-mcp-server@latest"],
"env": {
"TRIEVE_API_KEY": "$TRIEVE_API_KEY",
"TRIEVE_ORGANIZATION_ID": "$TRIEVE_ORGANIZATION_ID",
"TRIEVE_DATASET_ID": "$TRIEVE_DATASET_ID"
}
}
}
}
Note: Instead of environment variables, --api-key, --org-id, and --dataset-id can be used as command-line arguments.
Once Claude Desktop starts, attachments will be available that correspond to the datasets available to the Trieve organization. These can be used to select a dataset. After that, begin chatting with Claude and ask for information about the dataset. Claude will use search as needed in order to filter and break down queries, and may make multiple queries depending on your task.
Development
Setup
- Clone the repository
- Install dependencies:
npm install
- Copy
.env.distto.envand configure your credentials - Build the project:
npm run build
Scripts
npm run build: Build the TypeScript projectnpm run watch: Watch for changes and rebuildnpm run test: Run testsnpm run inspector: Run the MCP inspector for debugging
License
MIT
[](https://archestra.ai/mcp-catalog/devflowinc__trieve__clients__mcp-server)trieve-mcp-server
A Model Context Protocol (MCP) server that provides agentic tools for interacting with the Trieve API. This server enables AI agents to search and interact with Trieve datasets through a standardized interface.
Features
- Search across Trieve datasets using semantic search
- List and access dataset information
- Support for both environment variables and command-line arguments
- Built with TypeScript for type safety and better developer experience
Installation
Installing via Smithery
To install Trieve for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install trieve-mcp-server --client claude
Manual Installation
npm install trieve-mcp-server
Configuration
Copy the .env.dist file to .env and fill in your Trieve credentials:
cp .env.dist .env
Required environment variables:
TRIEVE_API_KEY: Your Trieve API key from dashboard.trieve.aiTRIEVE_ORGANIZATION_ID: Your Trieve organization ID from dashboard.trieve.ai
Optional environment variables:
TRIEVE_DATASET_ID: Specific dataset ID to use (if not provided via CLI)
Command-line arguments (override environment variables):
trieve-mcp-server --api-key <your-api-key> --org-id <your-org-id> [--dataset-id <dataset-id>]
Usage
Starting the Server
trieve-mcp-server
Available Tools
search
Search through a specified Trieve dataset.
Parameters:
query(string): The search querydatasetId(string): ID of the dataset to search insearchType(string, optional): "semantic" (default), "fulltext", "hybrid", or "bm25"filters(object, optional): Advanced filtering optionshighlightOptions(object, optional): Customize result highlightingpage(number, optional): Page number, default 1pageSize(number, optional): Results per page, default 10
Example:
{
"query": "example search query",
"datasetId": "your-dataset-id",
"searchType": "semantic",
"page": 1,
"pageSize": 10
}
Available Resources
The server exposes Trieve datasets as resources with the following URI format:
trieve://datasets/{dataset-id}
Usage with Claude Desktop
The Trieve MCP Server supports MCP integration with Claude Desktop. Place the following in your Claude Desktop's claude_desktop_config.json.
{
"mcpServers": {
"trieve-mcp-server": {
"command": "npx",
"args": ["trieve-mcp-server@latest"],
"env": {
"TRIEVE_API_KEY": "$TRIEVE_API_KEY",
"TRIEVE_ORGANIZATION_ID": "$TRIEVE_ORGANIZATION_ID",
"TRIEVE_DATASET_ID": "$TRIEVE_DATASET_ID"
}
}
}
}
Note: Instead of environment variables, --api-key, --org-id, and --dataset-id can be used as command-line arguments.
Once Claude Desktop starts, attachments will be available that correspond to the datasets available to the Trieve organization. These can be used to select a dataset. After that, begin chatting with Claude and ask for information about the dataset. Claude will use search as needed in order to filter and break down queries, and may make multiple queries depending on your task.
Development
Setup
- Clone the repository
- Install dependencies:
npm install
- Copy
.env.distto.envand configure your credentials - Build the project:
npm run build
Scripts
npm run build: Build the TypeScript projectnpm run watch: Watch for changes and rebuildnpm run test: Run testsnpm run inspector: Run the MCP inspector for debugging
License
MIT
Related MCP Servers
mcp-shrimp-task-manager
88/100Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems.
cognee-mcp
86/100Memory for AI Agents in 5 lines of code
shadcn-ui-mcp-server
82/100A mcp server to allow LLMS gain context about shadcn ui component structure,usage and installation,compaitable with react,svelte 5,and vue
mobile-mcp
81/100Model Context Protocol Server for Mobile Automation and Scraping (iOS, Android, Emulators, Simulators and Real Devices)
HuggingFace
80/100Remote MCP server for HuggingFace services - access models, datasets, and spaces
markitdown-mcp
80/100Python tool for converting files and office documents to Markdown.
