.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/txn2/kubefwd
home/mcp-servers/txn2/kubefwd
txn2 avatar

kubefwd

bytxn2· 2 MCP servers

Stars

4.2k

Forks

228

Category

DevOps & CI/CD

View on GitHub

TL;DR

[Documentation](https://kubefwd.com) | [Getting Started](https://kubefwd.com/getting-started/) | [User Guide](https://kubefwd.com/user-guide/) | [API Reference](https://kubefwd.com/api-reference/) | [MCP (AI Integration)](https://kubefwd.com/mcp-integration/)

How to install kubefwd?

txn2/kubefwd
$git clone https://github.com/txn2/kubefwd

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install kubefwd by running `git clone https://github.com/txn2/kubefwd`, then use it for the current task and follow its documentation at https://github.com/txn2/kubefwd.

Files · 1

View on GitHub
README.md
1# kubefwd (Kube Forward)
2 
3![kubefwd - kubernetes bulk port forwarding](kubefwd-mast2.jpg)
4 
5[![CNCF Landscape](https://img.shields.io/badge/CNCF%20Landscape-5699C6?logo=cncf&logoColor=fff)](https://landscape.cncf.io/?item=app-definition-and-development--application-definition-image-build--kubefwd)
6[![GitHub license](https://img.shields.io/github/license/txn2/kubefwd.svg)](https://github.com/txn2/kubefwd/blob/master/LICENSE)
7[![codecov](https://codecov.io/gh/txn2/kubefwd/branch/master/graph/badge.svg)](https://codecov.io/gh/txn2/kubefwd)
8[![Go Report Card](https://goreportcard.com/badge/github.com/txn2/kubefwd)](https://goreportcard.com/report/github.com/txn2/kubefwd)
9[![GitHub release](https://img.shields.io/github/release/txn2/kubefwd.svg)](https://github.com/txn2/kubefwd/releases)
10[![GitHub Downloads](https://img.shields.io/github/downloads/txn2/kubefwd/total)](https://github.com/txn2/kubefwd/releases)
11[![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/txn2/kubefwd/badge)](https://scorecard.dev/viewer/?uri=github.com/txn2/kubefwd)
12[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/11659/badge)](https://www.bestpractices.dev/projects/11659)
13[![SLSA 3](https://slsa.dev/images/gh-badge-level3.svg)](https://slsa.dev)
14 
15 
16**[Documentation](https://kubefwd.com)** | **[Getting Started](https://kubefwd.com/getting-started/)** | **[User Guide](https://kubefwd.com/user-guide/)** | **[API Reference](https://kubefwd.com/api-reference/)** | **[MCP (AI Integration)](https://kubefwd.com/mcp-integration/)**
17 
18## Develop Locally, Connect to Kubernetes
19 
20**kubefwd** enables developers to work on their local machine while seamlessly accessing services running in a Kubernetes cluster. If you're building a new API that needs to connect to a database at `db:5432`, an auth service at `auth:443`, and a cache at `redis:6379`, all running in your development cluster, kubefwd makes them available locally by their service names, exactly as they would appear in-cluster. No environment-specific configuration, no local service setup, no Docker Compose files. Just run `kubefwd` and your application's existing connection strings work.
21 
22This is the essential use case: **reduce or eliminate environment-specific connection setup and configurations** during local development. Your code uses `http://api-gateway:8080` in production? It works the same way on your laptop with kubefwd.
23 
24> Bulk Kubernetes port forwarding with an interactive TUI, unique IPs per service, and automatic reconnection.
25 
26**kubefwd** is a command-line utility that bulk port forwards Kubernetes services to your local workstation. Each service gets its own unique loopback IP (127.x.x.x), eliminating port conflicts and enabling realistic local development with cluster services accessible by name.
27 
28![kubefwd TUI - Main View](docs/images/tui-110-main-active.png)
29 
30## Quick Start
31 
32```bash
33# Install (macOS)
34brew install kubefwd
35 
36# Forward all services in a namespace with the interactive TUI
37sudo -E kubefwd svc -n my-namespace --tui
38```
39 
40Press `?` for help, `q` to quit. See [Getting Started](https://kubefwd.com/getting-started/) for detailed installation and setup.
41 
42## How It Works
43 
44<div align="center">
45 <img width="654" alt="kubefwd - Kubernetes Port Forward Diagram" src="https://mk.imti.co/images/content/kubefwd-net.png">
46</div>
47 
48kubefwd discovers services in your namespace, assigns each a unique loopback IP, updates `/etc/hosts` with service names, and establishes port forwards through the Kubernetes API. Access services by name just like in-cluster:
49 
50```bash
51curl http://api-service:8080
52mysql -h database -P 3306
53redis-cli -h cache -p 6379
54```
55 
56## Features
57 
58- **Interactive TUI**: Real-time service monitoring with traffic metrics
59- **Unique IP per Service**: Each service gets its own 127.x.x.x address
60- **Auto-Reconnect**: Reconnects when pods restart or connections drop
61- **Bulk Forwarding**: Forward all services in a namespace with one command
62- **Live Traffic Monitori

Preview

txn2/kubefwdtxn2/kubefwd

# kubefwd (Kube Forward)

![kubefwd - kubernetes bulk port forwarding](kubefwd-mast2.jpg)

[![CNCF Landscape](https://img.shields.io/badge/CNCF%20Landscape-5699C6?logo=cncf&logoColor=fff)](https://landscape.cncf.io/?item=app-definition-and-development

[![GitHub license](https://img.shields.io/github/license/txn2/kubefwd.svg)](https://github.com/txn2/kubefwd/blob/master/LICENSE)

Repotxn2/kubefwd
TypeMCP Servers
CategoryDevOps & CI/CD
UpdatedJul 2026
LicenseApache-2.0
First seenJul 27, 2026

Tags

MCPapi-restdeveloper-tools

Related

6 picks
Type
  1. circleci-public avatarmcp-server-circleciA Model Context Protocol (MCP) server implementation for CircleCI, enabling natural language interactions with CircleCI functionality through MCP-enabled clientsMCP ServersJul 2026141k86
  2. argoproj-labs avatarmcp-for-argocdArgo CD MCP ServerMCP ServersJul 202690k547
  3. flux159 avatarmcp-server-kubernetesMCP server for interacting with Kubernetes clusters via kubectlMCP ServersJul 202664k1.5k
  4. hookdeck avatarhookdeck-cliCLI for Hookdeck: forward webhooks to localhost (ngrok alternative), manage and query Event Gateway resources (sources, connections, destinations, events), run the MCP server for AI agents. Free for dev.MCP ServersJul 202647k358
  5. heroku avatarheroku-mcp-serverHeroku Platform MCP ServerMCP ServersJul 202626k80
  6. tiberriver256 avatarmcp-server-azure-devopsAzure DevOps reference server for the Model Context Protocol (MCP)MCP ServersJul 202624k381