MCP.so
็™ปๅฝ•

๐Ÿ” MCP Server - Vector Search

@omarguzmanm

ๅ…ณไบŽ ๐Ÿ” MCP Server - Vector Search

MCP Server to improve LLM context through vector search.

ๅŸบๆœฌไฟกๆฏ

ๅˆ†็ฑป

่ฎฐๅฟ†ไธŽ็Ÿฅ่ฏ†

่ฟ่กŒๆ—ถ

python

ไผ ่พ“ๆ–นๅผ

stdio

ๅ‘ๅธƒ่€…

omarguzmanm

้…็ฝฎ

ไฝฟ็”จไธ‹้ข็š„้…็ฝฎ,ๅฐ†ๆญคๆœๅŠกๅ™จๆทปๅŠ ๅˆฐไฝ ็š„ MCP ๅฎขๆˆท็ซฏใ€‚

{
  "mcpServers": {
    "mcp-server-vector-search": {
      "command": "uv",
      "args": [
        "venv"
      ]
    }
  }
}

ๅทฅๅ…ท

ๆœชๆฃ€ๆต‹ๅˆฐๅทฅๅ…ท

ๅทฅๅ…ทๆ˜ฏไปŽ README ไธญ่‡ชๅŠจๆๅ–็š„ใ€‚็ปดๆŠค่€…ๅฏไปฅๅœจ ## Tools ๆ ‡้ข˜ไธ‹ๅˆ—ๅ‡บๅทฅๅ…ท,ๅณๅฏๅกซๅ……่ฟ™้ƒจๅˆ†ๅ†…ๅฎนใ€‚

ๆฆ‚่งˆ

What is ๐Ÿ” MCP Server - Vector Search?

A Model Context Protocol server built with FastMCP that combines Neo4jโ€™s graph database with vector search using embeddings. It enables intelligent semantic search across a knowledge graph through natural language queries, designed for MCP clients such as Claude AI.

How to use ๐Ÿ” MCP Server - Vector Search?

After cloning the repository, create a virtual environment with uv, install dependencies (fastmcp, neo4j, openai, python-dotenv, sentence-transformers, pydantic), configure a .env file with Neo4j credentials and an optional OpenAI API key, and create a vector index in Neo4j. Launch the server with python main.py. The server exposes one tool: vector_search_neo4j(prompt), which converts a natural language query into an embedding and searches the vector index for semantically similar nodes.

Key features of ๐Ÿ” MCP Server - Vector Search

  • Converts natural language queries into 1536โ€‘dimensional embeddings via OpenAI.
  • Searches a Neo4j vector index for semantically similar nodes.
  • Returns ranked results with similarity scores.
  • Built on FastMCP for minimal overhead and MCP protocol compliance.
  • Uses uv for 10โ€“100x faster dependency resolution.
  • Supports fallback to a local all-MiniLM-L6-v2 embedding model.

Use cases of ๐Ÿ” MCP Server - Vector Search

  • Semantic document retrieval from a Neo4j knowledge graph.
  • Finding contextually relevant graph-connected information using plain language.
  • Integrating intelligent search into MCPโ€‘compatible AI assistants (e.g., Claude Desktop).
  • Building RAGโ€‘style applications that combine graph traversal with vector similarity.

FAQ from ๐Ÿ” MCP Server - Vector Search

What are the runtime requirements?

Python 3.8+, Neo4j 5.0+ with the APOC plugin, and either an OpenAI API key (for the default 1536โ€‘dimension embeddings) or the sentence-transformers library for a local fallback model.

Where does the data live?

All data โ€“ nodes, their embedding properties, and the vector index โ€“ is stored inside a Neo4j database. The server only reads from and writes to that database.

Is an OpenAI API key required?

No. If OPENAI_API_KEY is not set in .env, the server falls back to the local all-MiniLM-L6-v2 model from sentence-transformers.

What vector index must exist in Neo4j?

A vector index named embeddableIndex on nodes labeled Document with property embedding, dimension 1536, and cosine similarity. If using the local fallback model, adjust the dimension accordingly.

How do I troubleshoot a missing vector index?

Use Cypher SHOW INDEXES to verify existence, and reโ€‘create it with the CREATE VECTOR INDEX command shown in the Quick Start.

่ฏ„่ฎบ

่ฎฐๅฟ†ไธŽ็Ÿฅ่ฏ† ๅˆ†็ฑปไธ‹็š„ๆ›ดๅคš MCP ๆœๅŠกๅ™จ