zee5-mcp-private
MCP server providing synthetic subscriber data (profiles, watch history, billing) for personalization in a Stream Discovery ADK agent.
README
zee5-mcp-private — Subscriber Personalization MCP (FastMCP, Cloud Run)
Self-hosted subscriber-data MCP server for the Stream Discovery ADK agent.
Streamable-HTTP MCP (FastMCP 3.x), stateless, mounts at /mcp. All data is
synthetic (invented subscribers — no real PII).
"Private" describes the data domain (subscriber profiles/billing), not the network. In this POC it is deployed public on Cloud Run; the Agent Gateway governs which agent identities may reach it.
Tools: get_profile, get_watch_history, get_continue_watching,
get_taste_profile, get_entitlements, get_ratings, get_subscription,
get_billing, get_transactions, get_plans.
Deploy to Cloud Run (public, unauthenticated) — Singapore
export PROJECT_ID="gm-test-337806"
export REGION="asia-southeast1"
gcloud config set project "$PROJECT_ID"
gcloud services enable run.googleapis.com cloudbuild.googleapis.com artifactregistry.googleapis.com
git clone https://github.com/<you>/zee5-mcp-private.git && cd zee5-mcp-private
gcloud run deploy zee5-subscriber-mcp \
--source . \
--region="$REGION" \
--allow-unauthenticated \
--min-instances=1 \
--timeout=3600 \
--no-cpu-throttling \
--project="$PROJECT_ID"
gcloud run services describe zee5-subscriber-mcp --region="$REGION" \
--project="$PROJECT_ID" --format='value(status.url)'
If
--allow-unauthenticatedfails (org Domain-Restricted-Sharing), use--no-invoker-iam-checkinstead.
Smoke test
URL=$(gcloud run services describe zee5-subscriber-mcp --region="$REGION" --format='value(status.url)')
curl -s "$URL/mcp" -H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | head -c 600
# then a real call (sample synthetic subscriber):
curl -s "$URL/mcp" -H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_profile","arguments":{"subscriber_id":"SUB-IN-100023"}}}' | head -c 600
Local run
pip install -r requirements.txt
PORT=8082 python server.py # http://127.0.0.1:8082/mcp
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.