srtux mcp

srtux mcp avatar

by srtux

What is srtux mcp

MCP Logging NL Query Server

This project provides a Model Context Protocol (MCP) server that allows developers and AI Agents to query Google Cloud Logging using natural language. The server uses Vertex AI Gemini 2.5 to translate natural language queries into Google Cloud Logging Query Language (LQL), then queries Cloud Logging and returns the results.

Features

  • Natural language to LQL translation using Vertex AI Gemini 2.5
  • Flexible log querying: filter on monitored resource, log name, severity, time, and more
  • REST API for easy integration
  • Ready for deployment on Google Cloud Run or GKE

API Usage

Endpoints

1. Natural Language Query

POST /logs/nl_query

Request:

{
  "query": "Show me all error logs from yesterday for my Cloud Run service 'my-service'",
  "max_results": 20
}

Response:

{
  "lql": "resource.type = \"cloud_run_revision\" AND resource.labels.service_name = \"my-service\" AND severity = ERROR AND timestamp >= \"2025-04-17T00:00:00Z\" AND timestamp < \"2025-04-18T00:00:00Z\"",
  "entries": [ ... log entries ... ]
}

2. LQL Filter Query

POST /logs/query

Request:

{
  "filter": "resource.type=\"cloud_run_revision\" AND severity=ERROR",
  "max_results": 20
}

Response:

{
  "lql": "resource.type=\"cloud_run_revision\" AND severity=ERROR",
  "entries": [ ... log entries ... ]
}

OpenAPI & Tooling

  • OpenAPI/Swagger docs available at /docs and /openapi.json when running.
  • Both endpoints are also discoverable as MCP tools for agent frameworks (Smithery, Claude Desktop, etc).

Example curl commands

curl -X POST $MCP_BASE_URL/logs/nl_query -H 'Content-Type: application/json' -d '{"query": "Show error logs for my Cloud Run service", "max_results": 2}'

curl -X POST $MCP_BASE_URL/logs/query -H 'Content-Type: application/json' -d '{"filter": "resource.type=\"cloud_run_revision\" AND severity=ERROR", "max_results": 2}'

Tests

  • Example test script: test_main.py (see repo)

.gitignore

  • Standard Python ignores included (see repo)

Deployment

Running on Google Cloud Run

You can deploy this server to Google Cloud Run for a fully managed, scalable solution.

Steps:

  1. Build the Docker image:

    gcloud builds submit --tag gcr.io/YOUR_PROJECT_ID/mcp-logging-server
    
  2. Deploy to Cloud Run:

    gcloud run deploy mcp-logging-server \
      --image gcr.io/YOUR_PROJECT_ID/mcp-logging-server \
      --platform managed \
      --region YOUR_REGION \
      --allow-unauthenticated \
      --port 8080
    

    Replace YOUR_PROJECT_ID and YOUR_REGION with your actual GCP project ID and region (e.g., us-central1).

  3. Set Environment Variables:

    • In the Cloud Run deployment UI or with the --set-env-vars flag, provide:
      • VERTEX_PROJECT=your-gcp-project-id
      • VERTEX_LOCATION=us-central1 (or your region)
    • Credentials:
      • Prefer using the Cloud Run service account with the right IAM roles (Logging Viewer, Vertex AI User).
      • You usually do NOT need to set GOOGLE_APPLICATION_CREDENTIALS on Cloud Run unless using a non-default service account key.
  4. IAM Permissions:

    • Ensure the Cloud Run service account has:
      • roles/logging.viewer
      • roles/aiplatform.user
  5. Accessing the Service:

    • After deployment, Cloud Run will provide a service URL (e.g., https://mcp-logging-server-xxxxxx.a.run.app).
    • Use this as your $MCP_BASE_URL in API requests.

Google Cloud Authentication Setup

This project requires Google Cloud Application Default Credentials (ADC) to access Logging and Vertex AI APIs.

Steps to Set Up Credentials:

  1. Create a Service Account:
  2. Create and Download a Key:
    • In the Service Account, click "Manage keys" → "Add key" → "Create new key" (choose JSON).
    • Download the JSON key file to your computer.
  3. Set the Environment Variable:
    • In your terminal, set the environment variable to the path of your downloaded key:
      export GOOGLE_APPLICATION_CREDENTIALS="/path/to/your/service-account-key.json"
      
    • Replace /path/to/your/service-account-key.json with the actual path.
  4. (Optional) Set Project and Location:
    • You may also need:
      export VERTEX_PROJECT=your-gcp-project-id
      export VERTEX_LOCATION=us-central1
      
  5. Verify Authentication:
    • Run a simple gcloud or Python client call to ensure authentication is working.
    • If you see DefaultCredentialsError, check your environment variable and file path.

Prerequisites

  • Python 3.9+
  • Google Cloud project with Logging and Vertex AI APIs enabled
  • Service account with permissions for Logging Viewer and Vertex AI User
  • Set environment variables:
    • VERTEX_PROJECT: Your GCP project ID
    • VERTEX_LOCATION: Vertex AI region (default: us-central1)
    • GOOGLE_APPLICATION_CREDENTIALS: Path to your service account JSON key file

Local Development

pip install -r requirements.txt
export VERTEX_PROJECT=your-project-id
export VERTEX_LOCATION=us-central1
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/key.json
python main.py

Deploy to Cloud Run

gcloud builds submit --tag gcr.io/$VERTEX_PROJECT/mcp-logging-server
 gcloud run deploy mcp-logging-server \
    --image gcr.io/$VERTEX_PROJECT/mcp-logging-server \
    --platform managed \
    --region $VERTEX_LOCATION \
    --allow-unauthenticated

Example Natural Language Queries

  • Show all logs from Kubernetes clusters
  • Show error logs from Compute Engine and AWS EC2 instances
  • Find Admin Activity audit logs for project my-project
  • Find logs containing the word unicorn
  • Find logs with both unicorn and phoenix
  • Find logs where textPayload contains both unicorn and phoenix
  • Find logs where textPayload contains the phrase 'unicorn phoenix'
  • Show logs from yesterday for Cloud Run service 'my-service'
  • Show logs from the last 30 minutes
  • Show logs for logName containing request_log in GKE
  • Show logs where pod_name matches foo or bar using regex
  • Show logs for Compute Engine where severity is WARNING or higher
  • Show logs for Cloud SQL instances in us-central1
  • Show logs for Pub/Sub topics containing 'payments'
  • Show logs for log entries between two timestamps
  • Show logs where jsonPayload.message matches regex 'foo.*bar'
  • Show logs where labels.env is not prod

For more LQL examples, see the official documentation.

License

Apache 2.0

Leave a Comment

Frequently Asked Questions

What is MCP?

MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.

What are MCP Servers?

MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.

How do MCP Servers work?

MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.

Are MCP Servers secure?

Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.

Related MCP Servers

chrisdoc hevy mcp avatar

chrisdoc hevy mcp

mcp
sylphlab pdf reader mcp avatar

sylphlab pdf reader mcp

An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.

pdf-parsetypescriptnodejs
aashari mcp server atlassian bitbucket avatar

aashari mcp server atlassian bitbucket

Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.

atlassianrepositorymcp
aashari mcp server atlassian confluence avatar

aashari mcp server atlassian confluence

Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.

atlassianmcpconfluence
prisma prisma avatar

prisma prisma

Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

cockroachdbgomcp
Zzzccs123 mcp sentry avatar

Zzzccs123 mcp sentry

mcp sentry for typescript sdk

mcptypescript
zhuzhoulin dify mcp server avatar

zhuzhoulin dify mcp server

mcp
zhongmingyuan mcp my mac avatar

zhongmingyuan mcp my mac

mcp
zhixiaoqiang desktop image manager mcp avatar

zhixiaoqiang desktop image manager mcp

MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)

mcp
zhixiaoqiang antd components mcp avatar

zhixiaoqiang antd components mcp

An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询

designantdapi

Submit Your MCP Server

Share your MCP server with the community

Submit Now