Sylex Search
Sylex Search — AIエージェントのための汎用検索
Sylex Searchは、AIエージェントがあらゆるカテゴリの製品、サービス、企業を発見、評価、比較できるようにするMCPサーバーです。
GoogleのAIエージェント版と考えてください。Webページではなく構造化されたJSONを返し、レイテンシはゼロ、クエリごとのコストもゼロです。
接続方法
SSE (推奨)
MCPクライアントの設定(Claude Desktop、Claude Code、Cursorなど)に追加してください:
{
"mcpServers": {
"sylex-search": {
"url": "https://search.sylex.ai/sse"
}
}
}Smithery経由
smithery mcp add mastadoonprime/sylex-searchnpm経由 (ローカルstdioプロキシ)
npx sylex-searchRelated MCP server: disvr
なぜこれが必要なのか
McKinseyは、1兆ドルの売上がAIエージェントを通じて流れると予測しています。エージェントが購入、予約、採用、調達を処理する際、請負業者、レストラン、SaaSプラットフォーム、部品サプライヤーなど、目的に合った適切なビジネスを見つける手段が必要です。ビジネスがインデックスに登録されていなければ、エージェントからは見えません。
Sylex Searchは、エージェントコマースのための発見レイヤーです。
インデックスの内容
14,000件以上のエントリがあり、増加中です:
ソース | 件数 | 内容 |
npm | 約3,000 | JavaScript/TypeScriptパッケージ |
crates.io | 約3,000 | Rustクレート |
Wikidata | 約2,800 | 製品、企業、プロトコル |
MCP servers | 約2,100 | awesome-mcp-serversのMCPツール |
GitHub | 約1,900 | 人気のリポジトリ |
PyPI | 約1,000 | Pythonパッケージ |
SaaS | 約100 | SaaS製品 |
インデックスはシードデータとしてソフトウェアパッケージから始まりましたが、Sylex Searchはソフトウェアに特化したものではありません。スキーマとツールは、あらゆる製品、サービス、ビジネスをサポートしています。
ツール
検索と発見
ツール | 説明 |
| 自然言語クエリでインデックスを検索します。適合スコア付きのランク付けされた結果を返します。 |
| IDで製品の完全なデータ(価格、機能、統合、レビューなど)を取得します。 |
| 2〜5つの製品を並べて比較します。 |
| すべてのカテゴリとサブカテゴリを件数付きで閲覧します。 |
| 関連性スコアに基づいて類似製品を見つけます。 |
| 問題の報告や改善の提案を行います。 |
リスティング管理
ツール | 説明 |
| 新しい製品やビジネスをインデックスに追加します。オーナー用トークンを返します。 |
| URL証明を使用して既存のリスティングの所有権を確認します。 |
| リスティングの詳細(説明、価格、カテゴリなど)を更新します。 |
| 他のエージェントが発見・接続できるようにMCP接続設定を追加します。 |
プロンプト
プロンプト | 説明 |
| ステップバイステップガイド:発見 → 詳細 → 比較 → 推奨。 |
| 徹底的な評価:製品検索 → 詳細取得 → 代替案検索 → 結論。 |
クエリ例
"react state management"→ zustand, redux, mobx, jotai"python web framework"→ Django, Flask, FastAPI, Sanic"project management tool for small teams"→ Notion, Linear, Asana"CRM with Slack integration"→ HubSpot, Salesforce, Pipedrive
エージェントフレームワークでの使用
LangChain
from langchain_mcp_adapters.client import MultiServerMCPClient
async with MultiServerMCPClient({
"sylex": {"url": "https://search.sylex.ai/sse", "transport": "sse"}
}) as client:
tools = client.get_tools()OpenAI Agents SDK
from agents import Agent
from agents.mcp import MCPServerSse
server = MCPServerSse(url="https://search.sylex.ai/sse")
agent = Agent(name="shopper", mcp_servers=[server])Microsoft AutoGen
from autogen_ext.tools.mcp import McpWorkbench, SseServerParams
params = SseServerParams(url="https://search.sylex.ai/sse")
async with McpWorkbench(server_params=params) as bench:
tools = await bench.list_tools()CrewAI
from crewai import Agent
from crewai_tools import MCPTool
sylex_tools = MCPTool.from_sse(url="https://search.sylex.ai/sse")
agent = Agent(role="researcher", tools=sylex_tools)アーキテクチャ
LLM呼び出しゼロ — 決定論的検索 (SQLite FTS + カスタムランキング)
ミリ秒単位の応答 — API呼び出しなし、モデル推論なし
クエリあたり$0 — トークンコストなし
構造化JSON — エージェントが直接解析可能、スクレイピング不要
エージェントファースト — ダッシュボードなし、アカウントなし、人間用UIなし
MCPネイティブ — Model Context Protocol標準に基づいて構築
セルフサービス — どのビジネスもツール呼び出しを通じてリスティングの登録、請求、管理が可能
サーバーメタデータ
プロパティ | 値 |
トランスポート | SSE |
品質スコア | 100/100 (Smithery) |
バージョン | 0.1.2 |
ツール | 11 |
プロンプト | 2 |
認証の必要性 | なし |
設定の必要性 | なし |
エージェント向け
サーバーカードはこちら:
GET https://search.sylex.ai/.well-known/mcp/server-card.jsonこれは、すべてのツール、プロンプト、接続詳細を含む完全なサーバーメタデータを返します(MCPセッションは不要です)。
セルフホスティング
pip install -r requirements.txt
export AC_SUPABASE_URL=your-supabase-url
export AC_SUPABASE_KEY=your-supabase-key
export TRANSPORT=sse
export PORT=8080
cd src && python server.pyライセンス
AGPL-3.0 — 詳細は LICENSE を参照してください。
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 Servers
- FlicenseNot gradedqualityNot gradedmaintenanceEnables users to search and discover over 500 AI agent endpoints and x402 APIs directly from MCP-compatible clients like Claude and Cursor. It provides tools to query endpoints by keyword, category, or capability while offering access to detailed provider statistics.
- AlicenseNot gradedqualityFmaintenanceTool search engine for AI agents. One API call to discover the best MCP server for any task. 900+ services indexed with 4-dimensional value ranking.MIT
- AlicenseAqualityBmaintenanceCountry-agnostic MCP-callable directory for AI agents to find local SMBs — realtors, insurance agents, medical practitioners — by category, location, or natural-language query. Returns business catalog data and UTM-tagged booking URLs (zero PII).5MIT
- AlicenseNot gradedqualityCmaintenanceAffiliate product search for AI agents. Indexes structured merchant feeds — real prices, live stock, affiliate links built in. Works with any MCP client.MIT
Related MCP Connectors
Multi-engine search for AI agents. Trust scoring, local corpus, MCP-native. Self-hostable, BYOK.
Search a curated directory of 300+ verified AI agents, MCP servers, and agentic tools.
Search and discover advertiser products through an open marketplace for AI agents.
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/MastadoonPrime/sylex-search'
If you have feedback or need assistance with the MCP directory API, please join our Discord server