Skip to main content
Glama

Sylex Search — AIエージェントのための汎用検索

Smithery

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-search

npm経由 (ローカルstdioプロキシ)

npx sylex-search

Related 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はソフトウェアに特化したものではありません。スキーマとツールは、あらゆる製品、サービス、ビジネスをサポートしています。

ツール

検索と発見

ツール

説明

search.discover

自然言語クエリでインデックスを検索します。適合スコア付きのランク付けされた結果を返します。

search.details

IDで製品の完全なデータ(価格、機能、統合、レビューなど)を取得します。

search.compare

2〜5つの製品を並べて比較します。

search.categories

すべてのカテゴリとサブカテゴリを件数付きで閲覧します。

search.alternatives

関連性スコアに基づいて類似製品を見つけます。

search.feedback

問題の報告や改善の提案を行います。

リスティング管理

ツール

説明

manage.register

新しい製品やビジネスをインデックスに追加します。オーナー用トークンを返します。

manage.claim

URL証明を使用して既存のリスティングの所有権を確認します。

manage.update

リスティングの詳細(説明、価格、カテゴリなど)を更新します。

manage.list_mcp

他のエージェントが発見・接続できるようにMCP接続設定を追加します。

プロンプト

プロンプト

説明

search-workflow

ステップバイステップガイド:発見 → 詳細 → 比較 → 推奨。

product-evaluation

徹底的な評価:製品検索 → 詳細取得 → 代替案検索 → 結論。

クエリ例

  • "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 を参照してください。

Install Server
A
license - permissive license
A
quality
F
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Enables 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.
  • A
    license
    Not graded
    quality
    F
    maintenance
    Tool 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
  • A
    license
    A
    quality
    B
    maintenance
    Country-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).
    5
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Affiliate product search for AI agents. Indexes structured merchant feeds — real prices, live stock, affiliate links built in. Works with any MCP client.
    MIT

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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