Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"nfreconfig-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server implementation for autonomous 5G Network Functions reconfiguration operations in cloud-native Kubernetes environments.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Nfreconfig Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server implementation for autonomous 5G Network Functions reconfiguration operations in cloud-native Kubernetes environments.
Before deploying the MCP server, you need a working multi-cluster Kubernetes environment with Nephio and 5G OAI stack.
Follow the step-by-step guide to set up your multi-cluster Kubernetes infrastructure with Nephio:
📖 Guide: Nephio Test Infrastructure Setup
This will provision:
Deploy the OpenAirInterface 5G network functions across your workload clusters:
📖 Guide: OAI 5G Deployment
Cluster Topology:
| Cluster | Network Functions | Description |
|---|---|---|
| Core Cluster | AMF, SMF, NRF, UDM, UDR, AUSF, MySQL | 5G Core control plane functions |
| Edge Cluster | UPF, CU-UP, DU | User plane and RAN lower layers |
| Regional Cluster | CU-CP | RAN control plane (gNB-CU-CP) |
| Standby Cluster | (Reserved) | Target for CU-CP relocation |
Interface Bindings:
┌─────────────────┐ N2 ┌─────────────────┐
│ Core Cluster │◄───────────►│ Regional Cluster│
│ (AMF, SMF...) │ │ (CU-CP) │
└────────┬────────┘ └───────┬─────────┘
│ N4 E1 │ F1-C
│ │
▼ ▼
┌─────────────────────────────────────────────────┐
│ Edge Cluster │
│ ┌─────┐ N3 ┌───────┐ F1-U ┌─────┐ │
│ │ UPF │◄────────►│ CU-UP │◄────────►│ DU │ │
│ └─────┘ └───────┘ └─────┘ │
└─────────────────────────────────────────────────┘
Install Kagent for Kubernetes-native agent runtime:
# Add Kagent Helm repository
helm repo add kagent https://kagent-dev.github.io/kagent/
helm repo update
# Install Kagent in the management cluster
helm install kagent kagent/kagent \
--namespace kagent-system \
--create-namespace
Verify installation:
kubectl get pods -n kagent-system
Clone the repository:
git clone https://github.com/bactp/nfreconfig-mcp-server.git
cd nfreconfig-mcp-server
Install dependencies:
go mod tidy
Run the MCP server locally:
go run cmd/server/main.go
# Build using kmcp
kmcp build
# Or build manually
docker build -t nfreconfig-mcp-server:latest .