remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Integrations
Typesense MCP 服务器
安装
安装uv
在 Mac 上,您可以使用homebrew安装它
Copy
克隆包
Copy
更新.cursor/mcp.json
以便在Cursor中使用
Copy
可用工具
Typesense MCP 服务器提供以下工具:
服务器管理
check_typesense_health
- 检查已配置的 Typesense 服务器的健康状态list_collections
- 检索 Typesense 服务器中所有集合的列表
收藏管理
describe_collection
- 检索特定集合的架构和元数据export_collection
- 从特定集合中导出所有文档create_collection
- 使用提供的架构创建一个新集合delete_collection
- 删除特定集合truncate_collection
- 通过删除所有文档但保留架构来截断集合
文档操作
create_document
- 在特定集合中创建一个新文档upsert_document
- 更新(创建或更新)特定集合中的单个文档index_multiple_documents
- 批量索引(创建、插入或更新)多个文档delete_document
- 根据 ID 从特定集合中删除单个文档import_documents_from_csv
- 将 CSV 数据中的文档导入到集合中
搜索功能
search
- 对特定集合执行关键字搜索vector_search
- 对特定集合执行矢量相似性搜索