{"id":48084434,"url":"https://github.com/upbound/controlplane-mcp-server","last_synced_at":"2026-04-04T15:07:08.301Z","repository":{"id":309606000,"uuid":"1012880649","full_name":"upbound/controlplane-mcp-server","owner":"upbound","description":"MCP Server providing various tools for working with a Control Plane","archived":false,"fork":false,"pushed_at":"2025-08-12T19:23:32.000Z","size":80,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-12T21:25:05.990Z","etag":null,"topics":["ai","crossplane","crossplane-functions","functions","go","golang","intelligent-functions","mcp","mcp-server","upbound","upbound-ai","upbound-crossplane","upbound-official","uxp","xp"],"latest_commit_sha":null,"homepage":"https://docs.upbound.io","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/upbound.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-03T03:15:04.000Z","updated_at":"2025-08-12T19:23:36.000Z","dependencies_parsed_at":"2025-08-12T21:25:16.156Z","dependency_job_id":"6d696508-7eee-44f2-a0e5-f42dc3a6de28","html_url":"https://github.com/upbound/controlplane-mcp-server","commit_stats":null,"previous_names":["upbound/controlplane-mcp-server"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/upbound/controlplane-mcp-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontrolplane-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontrolplane-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontrolplane-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontrolplane-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/upbound","download_url":"https://codeload.github.com/upbound/controlplane-mcp-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/upbound%2Fcontrolplane-mcp-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31403952,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","crossplane","crossplane-functions","functions","go","golang","intelligent-functions","mcp","mcp-server","upbound","upbound-ai","upbound-crossplane","upbound-official","uxp","xp"],"created_at":"2026-04-04T15:07:07.711Z","updated_at":"2026-04-04T15:07:08.294Z","avatar_url":"https://github.com/upbound.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# controlplane-mcp-server\n[![CI](https://github.com/upbound/controlplane-mcp-server/actions/workflows/ci.yaml/badge.svg)](https://github.com/upbound/controlplane-mcp-server/actions/workflows/ci.yaml)\n[![Slack](https://img.shields.io/badge/slack-upbound_crossplane-purple?logo=slack)](https://crossplane.slack.com/archives/C01TRKD4623)\n[![GitHub release](https://img.shields.io/github/release/upbound/controlplane-mcp-server/all.svg)](https://github.com/upbound/controlplane-mcp-server/releases)\n\n## Features\n\n* Read Events: Look up events corresponding to the supplied pod.\n* Read Pod Logs: Look up logs corresponding to the supplied pod.\n\n## Example Usage with Intelligent Function\n```yaml\napiVersion: pkg.crossplane.io/v1beta1\nkind: DeploymentRuntimeConfig\nmetadata:\n  name: ctp-mcp\nspec:\n  serviceAccountTemplate:\n    metadata:\n      # We need to provide additional permissions to the function. In order to\n      # do that we create a deterministic ServiceAccount name.\n      name: function-pod-analyzer\n  deploymentTemplate:\n    spec:\n      selector: {}\n      template:\n        spec:\n          containers:\n          - name: package-runtime\n            args:\n            - --debug\n            # Fine for local development (using crossplane render). Not fine\n            # when integrated with Crossplane.\n            # - --insecure\n            env:\n            # Inform the function of the CTP1 MCP Server.\n            # transport: http-stream indicates that we'll communicate with the\n            # MCP server over StreamableHTTP.\n            - name: MCP_SERVER_TOOL_CTP1_TRANSPORT\n              value: http-stream\n            # baseURL indicates which address and endpoint to reach out to for\n            # tooling.\n            - name: MCP_SERVER_TOOL_CTP1_BASEURL\n              value: http://localhost:8080/mcp\n          - name: controlplane-mcp-server\n            image: xpkg.upbound.io/upbound/controlplane-mcp-server:v0.1.0\n            args:\n            - --debug\n```\n\nRequired Permissions for the function:\n```yaml\n---\n# log-and-event-reader provides sufficient yet narrow scoped permissions for\n# reading pod logs and events related to the pod.\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRole\nmetadata:\n  name: log-and-event-reader\nrules:\n# controlplane-mcp-server needs get/list on pods, pods/log, and events\n# in order to retrieve information for analysis.\n- apiGroups:\n  - \"\"\n  resources:\n  - events\n  - pods\n  - pods/log\n  verbs:\n  - get\n  - list\n---\n# Bind the above ClusterRole to the function's service account.\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n  name: log-and-event-reader\nroleRef:\n  apiGroup: rbac.authorization.k8s.io\n  kind: ClusterRole\n  name: log-and-event-reader\nsubjects:\n- kind: ServiceAccount\n  name: function-pod-analyzer\n  namespace: crossplane-system\n```\n\nFunction Spec:\n```yaml\n---\napiVersion: pkg.crossplane.io/v1beta1\nkind: Function\nmetadata:\n  name: function-claude\nspec:\n  package: xpkg.upbound.io/upbound/function-claude:v0.1.0\n  runtimeConfigRef:\n    name: ctp-mcp\n```\n\n## Available Tools\n\n1. get_pod_logs\n\nRead the logs of the given container of the given Kubernetes pod in the given namespace.\n\nParameters:\n\n* namespace (string, required): The Kubernetes namespace of the pod\n* pod (string, required): The name of the Kubernetes pod\n* container (string): The name of the container of the pod whose logs are being\nread\n\n2. get_pod_events\n\nRead the events of the given Kubernetes pod in the given namespace.\n\nParameters:\n* namespace (string, required): The Kubernetes namespace of the pod\n* pod (string, required): The name of the Kubernetes pod\n* container (string): The name of the container of the pod whose logs are being\nread\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fcontrolplane-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fupbound%2Fcontrolplane-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fupbound%2Fcontrolplane-mcp-server/lists"}