{"id":42778479,"url":"https://github.com/kagenti/plugins-adapter","last_synced_at":"2026-01-29T22:14:58.843Z","repository":{"id":327669473,"uuid":"1110151270","full_name":"kagenti/plugins-adapter","owner":"kagenti","description":"Allow configuration and invocation of guardrails for Envoy based MCP Gateway","archived":false,"fork":false,"pushed_at":"2026-01-16T20:49:11.000Z","size":22,"stargazers_count":2,"open_issues_count":7,"forks_count":2,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-17T09:23:02.211Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kagenti.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-04T19:32:58.000Z","updated_at":"2026-01-16T20:49:18.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kagenti/plugins-adapter","commit_stats":null,"previous_names":["kagenti/plugins-adapter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kagenti/plugins-adapter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagenti%2Fplugins-adapter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagenti%2Fplugins-adapter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagenti%2Fplugins-adapter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagenti%2Fplugins-adapter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kagenti","download_url":"https://codeload.github.com/kagenti/plugins-adapter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kagenti%2Fplugins-adapter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28887221,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"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":[],"created_at":"2026-01-29T22:14:58.701Z","updated_at":"2026-01-29T22:14:58.835Z","avatar_url":"https://github.com/kagenti.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"An Envoy ext-proc to configure and invoke guardrails for MCP Gateway.\n\n## Quick Install\n\n* Expects configured [kubectl](https://kubernetes.io/docs/reference/kubectl/) in cli\n* Use pre-built image to deploy\n    ```\n    git clone https://github.com/kagenti/plugins-adapter.git\n    cd plugins-adapter\n    make deploy_quay\n    ```\n\n\n## Full Dev Build\n\n* Build protobufs\n\t```\n\tpython3 -m venv .venv\n\tsource .venv/bin/activate\n\n\t./proto-build.sh\n\n\t```\n* Verify src folder contains `/envoy`,`/validate`,`/xds`,`/udpa`\n* Deploy to kind cluster\n\t```\n\tmake all\n\t``` \n\n## Configure Plugins\n\n* Update `resources/config/config.yaml` with list of plugins\n* `make all`\n\n### Build proto step by step, instead of running proto-build.sh\n\n1. Install protoc. See instructions if [needed](https://betterproto.github.io/python-betterproto2/getting-started/).\n- Install the proto compiler and tools:\n```sh\npip install -r requirements-proto.txt\n```\n2. Build the python `envoy` protobufs\n- Code to help pull and build the python code from proto files: `https://github.com/cetanu/envoy_data_plane.git`\n- Run: `python build.py`.\nNOTE: This will build the envoy protos in `src/envoy_data_plane_pb2/` Copy the `src/envoy_data_plane_pb2/envoy` directory to where you need it.\n```sh\ncd ..\ngit clone git@github.com:cetanu/envoy_data_plane.git\ncd envoy_data_plane\npython build.py\ncd ..\ncp -r envoy_data_plane/src/envoy_data_plane_pb2/envoy plugins-adapter/src/\n```\n\n3. Get the python xds protobufs:\n```sh\ngit clone https://github.com/cncf/xds.git\ncp -rf xds/python/xds xds/python/validate xds/python/udpa plugins-adapter/src/\n```\nNOTE: This repo contains the python code for `validate`, `xds`, and `udpa`. Go to folder `python`. Copy the needed folders or run\nsetup.py to install.\n\n4. In the end you need `envoy`, `validate`, `xds`, `udpa` python protobufs folders copied into `src` to run example server.py\n5. `pip install -r requirements.py`\n6. Run `python server.py`\n\n### Deploy to kind cluster\n```\ncd plugins-adapter\nmake all\n```\n\n### Enable debug logs for mcp-gateway envoy routes if needed\n* From mcp-gateway folder:\n`make debug-envoy-impl`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkagenti%2Fplugins-adapter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkagenti%2Fplugins-adapter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkagenti%2Fplugins-adapter/lists"}