Google Cloud Logging
An MCP server for accessing Google Cloud Logging data and services.
Google Cloud Logging MCP Server
A Model Context Protocol (MCP) server that provides access to Google Cloud Logging. This server allows AI assistants to query, search, and analyze logs from Google Cloud Platform projects.
Features
- Query Logs: Search and filter logs across GCP projects
- Get Log Details: Retrieve detailed information about specific log entries
- List Projects: List available GCP projects
Getting Started
Prerequisites
- Bun runtime
- Google Cloud credentials configured
- Access to Google Cloud Logging API
Quick Start
-
Install dependencies:
bun install -
Set up Google Cloud credentials:
# Option 1: Use gcloud CLI gcloud auth application-default login # Option 2: Use service account export GOOGLE_APPLICATION_CREDENTIALS="/path/to/service-account.json" -
Set your project ID:
export GOOGLE_CLOUD_PROJECT="your-project-id" -
Run the server:
bun run start
Using with Claude Desktop
Add the following to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"cloud-logging": {
"command": "bun",
"args": ["run", "/path/to/cloud-logging-mcp/src/main.ts"],
"env": {
"GOOGLE_CLOUD_PROJECT": "your-project-id"
}
}
}
}
Example Tool Usage
Query Logs
Search and filter logs from Google Cloud Logging.
{
"tool": "queryLogs",
"input": {
"projectId": "my-project",
"filter": "resource.type=\"cloud_run_revision\" AND severity>=ERROR",
"orderBy": {
"timestamp": "desc"
},
"pageSize": 50
}
}
Parameters:
projectId: GCP project IDfilter: Log filter query (follows GCP logging query syntax)orderBy: Sort order for resultspageSize: Number of results per pagepageToken: Token for paginationresourceNames: Specific log resources to querysummaryFields: Fields to include in the summary
Get Log Detail
Retrieve complete details for a specific log entry.
{
"tool": "getLogDetail",
"input": {
"projectId": "my-project",
"logId": "65f5a7b60000000001234567"
}
}
Parameters:
projectId: GCP project IDlogId: The unique identifier of the log entry
List Projects
List all accessible Google Cloud projects.
{
"tool": "listProjects",
"input": {}
}
Parameters: None
Common Filter Examples
- By severity:
severity>=ERROR - By time range:
timestamp>="2024-01-01T00:00:00Z" - By resource:
resource.type="cloud_run_revision" - By text search:
textPayload:"connection timeout" - Combined:
resource.type="k8s_container" AND severity=ERROR AND timestamp>="2024-01-01T00:00:00Z"
Troubleshooting
- Authentication errors: Ensure your Google Cloud credentials are properly configured
- Permission errors: Check that your account has the
logging.logEntries.listpermission - No results: Verify your filter syntax and that logs exist for your query
Development
# Run tests
bun test
# Type checking
bun run typecheck
# Linting
bun run lint
# Format code
bun run format
Architecture
The server follows a clean architecture pattern:
/adapter: External service integrations (Google Cloud APIs)/domain: Core business logic and data models/port: Interface definitions and MCP tool handlers/util: Utility functions and helpers
License
MIT
Related Servers
Cloudflare Remote MCP Server
A remote MCP server deployable on Cloudflare Workers or runnable locally, requiring no authentication or external data files.
MCP Server for Oracle Cloud Infrastructure (OCI)
Model Context Protocol (MCP) server for Oracle Cloud Infrastructure, allowing LLMs like Claude to interact directly with OCI resources
fastFOREX.io Currency, Crypto, Forex
Realtime and Historical Exchange Rate Data, FX pairs, bid/ask, OHLC and Crypto prices
AWS MCP
A natural language interface to manage AWS services like RDS, S3, EC2, and VPC.
mcp-server-insumer
On-chain token verification across 31 blockchains. 16 tools for ECDSA-signed attestations, discount codes, merchant discovery, and autonomous onboarding.
Rewards Flights Public MCP
Deploy a remote, authentication-free MCP server on Cloudflare Workers to search for rewards flights.
Cloudflare DNS
Manage Cloudflare DNS records for your domains.
ElevenLabs
Text-to-speech integration using the ElevenLabs API.
AWS CDK
Get prescriptive CDK advice, explain CDK Nag rules, check suppressions, generate Bedrock Agent schemas, and discover AWS Solutions Constructs patterns.
CData Paylocity MCP Server
A read-only MCP server by CData that enables LLMs to query live data from Paylocity.