MCP Embedding Storage Server
Enables storing and retrieving information using vector embeddings with semantic search capabilities. Integrates with the AI Embeddings API to automatically generate embeddings for content and perform similarity-based searches through natural language queries.
README
MCP Embedding Storage Server
An MCP server for storing and retrieving information using vector embeddings via the AI Embeddings API.
Features
- Store content with automatically generated embeddings
- Search content using semantic similarity
- Access content through both tools and resources
- Use pre-defined prompts for common operations
How It Works
This MCP server connects to the AI Embeddings API, which:
- Processes content and breaks it into sections
- Generates embeddings for each section
- Stores both the content and embeddings in a database
- Enables semantic search using vector similarity
When you search, the API finds the most relevant sections of stored content based on the semantic similarity of your query to the stored embeddings.
Installation
# Install with npm
npm install -g mcp-embedding-storage
# Or with pnpm
pnpm add -g mcp-embedding-storage
# Or with yarn
yarn global add mcp-embedding-storage
Usage with Claude for Desktop
Add the following configuration to your claude_desktop_config.json file:
{
"mcpServers": {
"embedding-storage": {
"command": "mcp-embedding-storage"
}
}
}
Then restart Claude for Desktop to connect to the server.
Available Tools
store-content
Stores content with automatically generated embeddings.
Parameters:
content: The content to storepath: Unique identifier path for the contenttype(optional): Content type (e.g., 'markdown')source(optional): Source of the contentparentPath(optional): Path of the parent content (if applicable)
search-content
Searches for content using vector similarity.
Parameters:
query: The search querymaxMatches(optional): Maximum number of matches to return
Available Resources
search://{query}
Resource template for searching content.
Example usage: search://machine learning basics
Available Prompts
store-new-content
A prompt to help store new content with embeddings.
Parameters:
path: Unique identifier path for the contentcontent: The content to store
search-knowledge
A prompt to search for knowledge.
Parameters:
query: The search query
API Integration
This MCP server integrates with the AI Embeddings API at https://ai-embeddings.vercel.app/ with the following endpoints:
-
Generate Embeddings (
POST /api/generate-embeddings)- Generates embeddings for content and stores them in the database
- Required parameters:
contentandpath
-
Vector Search (
POST /api/vector-search)- Searches for content based on semantic similarity
- Required parameter:
prompt
Building from Source
# Clone the repository
git clone https://github.com/yourusername/mcp-embedding-storage.git
cd mcp-embedding-storage
# Install dependencies
pnpm install
# Build the project
pnpm run build
# Start the server
pnpm start
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.