A comprehensive Model Context Protocol (MCP) server for managing Netskope Private Access (NPA) infrastructure through AI-powered automation. This project includes extensive documentation organized for easy navigation: ๐ Start with the Complete Documentation - Overview and navigation guide The MCP server provides 84 specialized tools across 10 categories: AI Response: Executes comprehensive deploy
Add this skill
npx mdskills install johnneerdael/netskope-mcpComprehensive MCP server with 84 tools for Netskope NPA management, excellent docs and real-world workflows
A comprehensive Model Context Protocol (MCP) server for managing Netskope Private Access (NPA) infrastructure through AI-powered automation.
This project includes extensive documentation organized for easy navigation:
๐ Start with the Complete Documentation - Overview and navigation guide
| Category | Description | Link |
|---|---|---|
| ๐๏ธ Architecture | Server design and patterns | Server Architecture |
| ๐ ๏ธ Tools Reference | Complete tool documentation | Publisher Tools, Private App Tools, Policy Tools |
| ๐ Workflows | Common automation patterns | Common Workflows |
| ๐ผ Real Examples | Complete use cases | Real-World Examples |
The MCP server provides 84 specialized tools across 10 categories:
| Category | Tools | Primary Use Cases |
|---|---|---|
| Publishers | 9 tools | Infrastructure deployment and management |
| Private Apps | 15 tools | Application lifecycle and configuration |
| Local Brokers | 7 tools | Network connectivity and routing |
| Policy Management | 6 tools | Access control and security rules |
| SCIM Integration | 5 tools | Identity and user management |
| Upgrade Profiles | 7 tools | Automated maintenance scheduling |
| Steering | 3 tools | Traffic routing and associations |
| Alerts | 2 tools | Event monitoring and notifications |
| Search | 2 tools | Resource discovery and querying |
| Validation | 2 tools | Configuration compliance |
AI Response: Executes comprehensive deployment workflow
AI Response: Emergency security response workflow
AI Response: Automated compliance assessment
Environment Setup
export NETSKOPE_BASE_URL="https://your-tenant.goskope.com"
export NETSKOPE_TOKEN="your-api-token"
Install and Run
npm install
npm run build
npm start
Connect via MCP Client
{
"mcpServers": {
"netskope-npa": {
"command": "node",
"args": ["/path/to/ns-private-access-mcp/build/index.js"],
"env": {
"NETSKOPE_BASE_URL": "https://your-tenant.goskope.com",
"NETSKOPE_TOKEN": "your-api-token"
}
}
}
}
npm install @johnneerdael/ns-private-access-mcp
git clone https://github.com/johnneerdael/ns-private-access-mcp.git
cd ns-private-access-mcp
npm install
npm run build
Tools are designed to work together through well-defined interfaces:
// Example: Creating a private app with validation and tagging
1. validateName() -> Check app name compliance
2. searchPublishers() -> Find target publisher
3. createPrivateApp() -> Create the application
4. createPrivateAppTags() -> Add organizational tags
5. updatePublisherAssociation() -> Associate with publishers
Every tool uses Zod schemas for type safety and validation:
const createAppSchema = z.object({
app_name: z.string().min(1).max(64),
host: z.string().url(),
protocols: z.array(protocolSchema),
clientless_access: z.boolean()
});
Built-in patterns for handling common issues:
This MCP server transforms complex Netskope NPA management into simple, AI-driven conversations.
Install via CLI
npx mdskills install johnneerdael/netskope-mcpNetskope NPA MCP Server is a free, open-source AI agent skill. A comprehensive Model Context Protocol (MCP) server for managing Netskope Private Access (NPA) infrastructure through AI-powered automation. This project includes extensive documentation organized for easy navigation: ๐ Start with the Complete Documentation - Overview and navigation guide The MCP server provides 84 specialized tools across 10 categories: AI Response: Executes comprehensive deploy
Install Netskope NPA MCP Server with a single command:
npx mdskills install johnneerdael/netskope-mcpThis downloads the skill files into your project and your AI agent picks them up automatically.
Netskope NPA MCP Server works with Claude Code, Claude Desktop, Cursor, Vscode Copilot, Windsurf, Continue Dev, Gemini Cli, Amp, Roo Code, Goose. Skills use the open SKILL.md format which is compatible with any AI coding agent that reads markdown instructions.