Sylex Search
Sylex Search — AI 에이전트를 위한 범용 검색
Sylex Search는 AI 에이전트가 모든 카테고리의 제품, 서비스 및 비즈니스를 발견, 평가 및 비교할 수 있도록 하는 MCP 서버입니다.
에이전트를 위한 구글이라고 생각하시면 됩니다. 웹 페이지 대신 구조화된 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 서버 | ~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 호출 0회 — 결정론적 검색 (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