Typesense MCP Server
Typesense MCP サーバー
AIモデルにTypesenseの検索機能へのアクセスを提供するモデルコンテキストプロトコル(MCP)サーバー実装。このサーバーにより、LLMはTypesenseコレクションに保存されたデータを検出、検索、分析できるようになります。
デモ

Related MCP server: All-Search MCP Server
特徴
リソース
typesense://URI 経由でコレクションの一覧を表示およびアクセスする各コレクションには名前、説明、ドキュメント数があります
スキーマアクセス用の JSON MIME タイプ
ツール
タイプセンスクエリ
強力なフィルタリング機能を使用してTypesenseコレクション内のドキュメントを検索します
入力: クエリテキスト、コレクション名、検索フィールド、フィルター、並べ替えオプション、制限
関連性スコアで一致するドキュメントを返します
タイプセンス_get_document
コレクションからIDで特定のドキュメントを取得する
入力: コレクション名、ドキュメントID
完全なドキュメントデータを返します
タイプセンスコレクション統計
Typesenseコレクションに関する統計情報を取得する
入力: コレクション名
コレクションのメタデータ、ドキュメント数、スキーマ情報を返します
プロンプト
分析コレクション
コレクションの構造と内容を分析する
入力: コレクション名
出力: スキーマ、データ型、統計に関する洞察
検索候補
コレクションの効果的な検索クエリの提案を取得する
入力: コレクション名
出力: コレクションスキーマに基づく推奨検索戦略
インストール
npm経由
# Global installation
npm install -g typesense-mcp-server
# Local installation
npm install typesense-mcp-servermcp-get経由
npx @michaellatman/mcp-get@latest install typesense-mcp-server発達
依存関係をインストールします:
npm installサーバーを構築します。
npm run build自動リビルドを使用した開発の場合:
npm run watch開発のためのインストール
Claudeデスクトップの使用
Claude Desktop で使用するには、サーバー設定を追加します。
MacOSの場合: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows の場合: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"typesense": {
"command": "node",
"args": [
"~/typesense-mcp-server/dist/index.js",
"--host", "your-typesense-host",
"--port", "8108",
"--protocol", "http",
"--api-key", "your-api-key"
]
},
}
}デバッグ
MCPサーバーはstdio経由で通信するため、デバッグが困難になる場合があります。パッケージスクリプトとして提供されているMCP Inspectorの使用をお勧めします。
npm run inspectorインスペクターは、ブラウザでデバッグ ツールにアクセスするための URL を提供します。
コンポーネント
リソース
サーバーは Typesense コレクションに関する情報を提供します。
コレクションスキーマ(
typesense://collections/<collection>)各コレクションのJSONスキーマ情報
フィールド名とデータ型が含まれます
データ構造を理解するためのサンプルドキュメント
リソーステンプレート
サーバーは次のテンプレートを提供します:
typesense_search - Typesense検索クエリを構築するためのテンプレート
typesense_collection - Typesenseコレクションの詳細を表示するためのテンプレート
Claude Desktopでの使用
このサーバーを Claude Desktop アプリで使用するには、 claude_desktop_config.jsonの「mcpServers」セクションに次の構成を追加します。
{
"mcpServers": {
"typesense": {
"command": "npx",
"args": [
"-y",
"typesense-mcp-server",
"--host", "your-typesense-host",
"--port", "8108",
"--protocol", "http",
"--api-key", "your-api-key"
]
}
}
}ログ記録
サーバーは次の場所にあるファイルに情報を記録します。
/tmp/typesense-mcp.logこのログには、サーバーの操作、要求、発生したエラーに関する詳細情報が含まれます。
ライセンス
このMCPサーバーはMITライセンスに基づいてライセンスされています。つまり、MITライセンスの条件に従って、ソフトウェアを自由に使用、改変、配布することができます。詳細については、プロジェクトリポジトリのLICENSEファイルをご覧ください。
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Capability registry for the agentic economy. Semantic search over verified MCP server listings.
An MCP server that gives your AI access to the source code and docs of all public github repos
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context22265MIT
- FlicenseNot gradedqualityDmaintenanceAn MCP server that enables web search and document retrieval capabilities through Tavily API and LangConnect vector database, supporting AI agents in gathering information for comprehensive report generation.22-
- FlicenseNot gradedqualityCmaintenanceAn MCP server exposing document search, retrieval, and summarization tools, paired with a LangChain agent that performs multi-step tasks like finding and summarizing relevant docs.-
- AlicenseNot gradedqualityCmaintenanceMCP server for MeiliSearch that enables searching indexes, managing documents and indexes, checking health/stats, and managing API keys. Perfect for AI agents to interact with MeiliSearch through natural language.62MIT
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/suhail-ak-2/mcp-typesense-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server