{
"mcpServers": {
"nfreconfig-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 44 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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 .