We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/baidubce/app-builder'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•431 B
"""
MCP Server for AI Search.
This module provides an integrated AI search solution that combines Baidu Search capabilities with
Large Language Models (LLMs). It enables Retrieval-Augmented Generation (RAG) workflows by retrieving
relevant information from Baidu Search and using LLMs to generate contextually appropriate responses.
"""
from .ai_search_server import AIsearch, server
__all__ = ["AIsearch", "server"]