Kilkaya MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Kilkaya MCP Serverquery pageviews for example.com for last 7 days"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Kilkaya MCP Server
Ein MCP-Server (Model Context Protocol) für die Kilkaya-Analytics-API. Er stellt Kilkayas Query-, Schema- und Metadata-Endpunkte als MCP-Tools bereit, läuft über Streamable HTTP (stateless) und ist für das Hosting auf Google Cloud Run ausgelegt.
Tools
Standardmäßig aktiv (read-only):
Tool | Kilkaya-Endpunkt | Beschreibung |
|
| Analytics-Query (Haupt-API). Antwort im JSON:API-Format. 202-Antworten („Query queued/running") werden automatisch alle 2,5 s neu gesendet, bis das Ergebnis da ist (Timeout konfigurierbar). |
|
| Verfügbare Schemas inkl. Felddefinitionen. |
|
| Metadaten für eine Artikel-URL (ohne Protokoll). |
|
| Metadaten für viele URLs auf einmal. |
Optional per Env-Flag:
Tool | Flag | Beschreibung |
|
| Schreibt/aktualisiert Artikel-Metadaten ( |
|
| Read-only User-/Rollen-Verwaltung. Standardmäßig aus, da Userdaten E-Mail-Adressen enthalten. |
Destruktive Endpunkte (User/Rollen anlegen, ändern, löschen) sind bewusst nicht als Tools implementiert.
Related MCP server: Seline MCP
Konfiguration (Umgebungsvariablen)
Variable | Pflicht | Beschreibung |
| ✅ | Kilkaya API Access Token. Wird als |
| empfohlen | Shared Secret zum Schutz des |
| – | HTTP-Port (Default |
| – | Default |
| – | Wie lange auf ein 202-„Query delayed" gepollt wird (Default |
| – |
|
| – |
|
Lokal starten
npm install
npm run build
KILKAYA_API_TOKEN=<token> npm start
# Healthcheck
curl http://localhost:8080/healthzMCP-Endpunkt: POST http://localhost:8080/mcp (Streamable HTTP, stateless — keine
Sessions, kein SSE-Stream vom Server; GET/DELETE /mcp antworten mit 405).
Deployment auf Google Cloud Run
PROJECT=<gcp-projekt>
REGION=europe-west3
# 1. Token als Secret hinterlegen
echo -n "<kilkaya-api-token>" | gcloud secrets create kilkaya-api-token \
--project "$PROJECT" --data-file=-
echo -n "<selbst-generiertes-shared-secret>" | gcloud secrets create kilkaya-mcp-auth-token \
--project "$PROJECT" --data-file=-
# 2. Bauen & deployen (Cloud Build baut das Dockerfile)
gcloud run deploy kilkaya-mcp \
--project "$PROJECT" --region "$REGION" \
--source . \
--set-secrets "KILKAYA_API_TOKEN=kilkaya-api-token:latest,MCP_AUTH_TOKEN=kilkaya-mcp-auth-token:latest" \
--allow-unauthenticated \
--min-instances 0 --max-instances 3 --memory 256Mi--allow-unauthenticated ist hier okay, weil MCP_AUTH_TOKEN den Endpunkt schützt.
Alternativ das Flag weglassen und Cloud-Run-IAM nutzen (Clients senden dann ein
Google-ID-Token) — dann kann MCP_AUTH_TOKEN entfallen.
Der Server ist stateless (ein frischer MCP-Server pro Request), daher sind beliebige Instanzzahlen inkl. Scale-to-zero unproblematisch.
Client-Konfiguration
Beispiel für Claude Code (.mcp.json) oder andere MCP-Clients mit Streamable HTTP:
{
"mcpServers": {
"kilkaya": {
"type": "http",
"url": "https://kilkaya-mcp-<hash>-<region>.a.run.app/mcp",
"headers": {
"Authorization": "Bearer <selbst-generiertes-shared-secret>"
}
}
}
}Beispiel-Query
Typischer Ablauf für ein LLM: erst kilkaya_list_schemas aufrufen, um Schema und
gültige Felder zu ermitteln, dann kilkaya_query:
{
"schemaname": "pageviews",
"datefrom": "2026-07-01T00:00:00+00:00",
"dateto": "2026-07-06T00:00:00+00:00",
"columns": ["url", "pageviews", "section", "_day"],
"filters": [
{ "column": "url", "operator": "like", "value": "*example.de*" }
],
"sortby": ["pageviews"],
"sortorder": ["desc"],
"limit": 100
}Filter-Operatoren: like, notlike, greater, less. Wildcards mit * (nicht %).
Projektstruktur
src/
index.ts – Express-App, Streamable-HTTP-Transport, Auth, /healthz
server.ts – MCP-Server- und Tool-Definitionen
kilkaya.ts – HTTP-Client für die Kilkaya-API inkl. 202-Polling
Dockerfile – Multi-Stage-Build (Node 22 Alpine)This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mxfksta/mcp_server_kilkaya'
If you have feedback or need assistance with the MCP directory API, please join our Discord server