Skip to main content
Glama

WebSearch MCP Server

by Howe829
github.py539 B
from providers.base import BaseWebSearchProvider from providers.enums import GithubSearchTypesEnum class GithubSearch(BaseWebSearchProvider): """ https://www.github.com """ def _get_url(self): return "https://www.github.com/search" def _get_params(self, query: str, **kwargs) -> dict: params = { "q": query, "type": kwargs.get("type", GithubSearchTypesEnum.REPO.value), "p": kwargs.get("page", 1), } return params github_search = GithubSearch()

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/Howe829/websearch-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server