├── .env.example ├── .github └── workflows │ ├── deploy.yml │ └── format_check.yml ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── copilot ├── .workspace ├── environments │ └── prod │ │ └── manifest.yml └── mcp-server-api │ └── manifest.yml ├── pyproject.toml ├── smithery.yaml ├── src ├── __init__.py └── server.py └── uv.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/format_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/.github/workflows/format_check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/README.md -------------------------------------------------------------------------------- /copilot/.workspace: -------------------------------------------------------------------------------- 1 | application: mcp-server 2 | -------------------------------------------------------------------------------- /copilot/environments/prod/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/copilot/environments/prod/manifest.yml -------------------------------------------------------------------------------- /copilot/mcp-server-api/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/copilot/mcp-server-api/manifest.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/src/server.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serpapi/serpapi-mcp/HEAD/uv.lock --------------------------------------------------------------------------------