mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-06-13 23:47:47 +00:00
This commit introduces MCP server functionality to Meilisearch, enabling AI assistants and LLM applications to interact with the search engine through a standardized protocol. Key features: - Dynamic tool generation from OpenAPI specification - Full API coverage with automatic route discovery - SSE and HTTP POST endpoint support at /mcp - Integration with existing authentication system - Comprehensive test suite (unit, integration, e2e) - Optional feature flag (--features mcp) The MCP server automatically exposes all Meilisearch endpoints as tools that AI assistants can discover and use, making it easier to integrate Meilisearch into AI-powered applications. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
33 lines
1.1 KiB
TOML
33 lines
1.1 KiB
TOML
[package]
|
|
name = "meilisearch-mcp"
|
|
version = "1.13.0"
|
|
authors = ["Clément Renault <clement@meilisearch.com>"]
|
|
description = "MCP (Model Context Protocol) server for Meilisearch"
|
|
homepage = "https://www.meilisearch.com"
|
|
readme = "README.md"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4.8.0", default-features = false }
|
|
anyhow = "1.0.86"
|
|
async-stream = "0.3.5"
|
|
async-trait = "0.1.81"
|
|
futures = "0.3.30"
|
|
meilisearch = { path = "../meilisearch" }
|
|
meilisearch-auth = { path = "../meilisearch-auth" }
|
|
meilisearch-types = { path = "../meilisearch-types" }
|
|
serde = { version = "1.0.204", features = ["derive"] }
|
|
serde_json = { version = "1.0.120", features = ["preserve_order"] }
|
|
thiserror = "1.0.61"
|
|
tokio = { version = "1.38.0", features = ["full"] }
|
|
tracing = "0.1.40"
|
|
utoipa = { version = "5.3", features = ["actix_extras", "time", "json"] }
|
|
uuid = { version = "1.10.0", features = ["serde", "v4"] }
|
|
reqwest = { version = "0.12.5", features = ["json"] }
|
|
|
|
[dev-dependencies]
|
|
insta = "1.39.0"
|
|
tokio = { version = "1.38.0", features = ["test-util"] }
|
|
actix-web = { version = "4.8.0", features = ["macros"] }
|
|
actix-rt = "2.10.0" |