Skip to main content
Glama

Sylex Search — 面向 AI 智能体的通用搜索

Smithery

Sylex Search 是一个 MCP 服务器,允许 AI 智能体发现、评估和比较各行各业的产品、服务和企业。

可以将其视为智能体版的 Google —— 它返回结构化的 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

为什么存在这个项目

麦肯锡预测将有 1 万亿美元的销售额通过 AI 智能体完成。当智能体处理采购、预订、招聘和寻源时,它们需要一种方法来找到合适的业务——无论是承包商、餐厅、SaaS 平台还是零件供应商。如果一家企业不在索引中,它对智能体来说就是不可见的。

Sylex Search 是智能体商业的发现层。

索引内容

14,000 多条目且在持续增长:

来源

数量

内容

npm

~3,000

JavaScript/TypeScript 包

crates.io

~3,000

Rust crates

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 — 无 Token 成本

  • 结构化 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