Help us improve
Share bugs, ideas, or general feedback.
From mcp-search-console
Local stdio server for accessing Google Search Console (GSC) data like performance reports, indexing, and sitemaps. Requires OAuth credentials path, client secrets file, and data state.
npx claudepluginhub aminforou/mcp-gscCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"mcp-search-console": {
"command": "uvx",
"args": [
"mcp-search-console"
],
"env": {
"GSC_DATA_STATE": "all",
"GSC_CREDENTIALS_PATH": "<your-gsc-credentials-path>",
"GSC_OAUTH_CLIENT_SECRETS_FILE": "<your-gsc-oauth-client-secrets-file>"
}
}
}
}Replace placeholder values for: GSC_CREDENTIALS_PATH, GSC_OAUTH_CLIENT_SECRETS_FILE
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
Server configuration and connection parameters
uvxCommand-line arguments passed to the server process
Environment variables set when the server starts
GSC_DATA_STATE=allGSC_CREDENTIALS_PATH=GSC_OAUTH_CLIENT_SECRETS_FILE=Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.