Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Transports: stdio vs HTTP
  • State of MCP (stats)
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI → MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE ↗ (opens in a new tab)
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. 🛠️ Other Tools and Integrations
  3. Juniper Routing Director MCP Server
Juniper Routing Director MCP Server logo
Health: ActiveRecent health check succeeded.Last checked 9/22/2026, 5:47:27 PM

Juniper Routing Director MCP Server

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time — check back soon.
View Repository4 GitHub StarsTotal stargazers on GitHub for the source repository (4 stars).Visit Website

MCP server to integrate with Juniper Routing Director

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON ▾

Client Config & Setup

Remote HTTP
Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "juniper-routing-director-mcp-server": {
      "url": "http://127.0.0.1:30030/mcp"
    }
  }
}

💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing Alternatives🛠️ More in Other Tools and Integrations

Documentation Overview

Routing Director MCP Server

An MCP (Model Context Protocol) server that integrates with Juniper's Routing Director platform, providing intelligent access to network routing, assurance, optimization, and intelligence capabilities.

Features

  • Flexible Authentication: Supports both basic and token-based authentication
  • Multiple Transport Options: HTTP and stdio transport protocols
  • Device management and monitoring
  • Configuration template deployment
  • VPN service management
  • Network topology visualization
  • KPI monitoring and observability
  • Customer and organization management

Prerequisites

  • Python >= 3.10, <= 3.14
  • Juniper Routing Director instance
  • Network connectivity to Routing Director API
  • Valid Routing Director credentials (username/password or API token)

Installation

From Source

bash
git clone https://github.com/Juniper/routing-director-mcp-server.git
cd routing-director-mcp-server
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -r requirements.txt

From MCP Registry

TBD

Configuration

Configuration File (config.json)

Create a config.json file with the following structure:

Basic Authentication:

config.json
{
  "http_url": "https://your-routing-director-host/",
  "org_id": "your-organization-id",
  "auth": {
    "type": "basic",
    "username": "your-username@example.com",
    "password": "your-password"
  }
}

Token Authentication:

config.json
{
  "http_url": "https://your-routing-director-host/",
  "org_id": "your-organization-id",
  "auth": {
    "type": "token",
    "token": "your-api-token"
  }
}

Note: This authentication is between the MCP server and the Routing Director instance. The MCP server will handle authentication with Routing Director on behalf of clients connecting to it.

Configuration Parameters

  • http_url (required): URL of your Routing Director instance
  • org_id (required): Your organization ID in Routing Director
  • auth (required): Authentication configuration
    • type: Either basic or token
    • username: Routing Director username (for basic auth)
    • password: Routing Director password (for basic auth)
    • token: API token (for token auth)
  • components (optional): Additional component configuration to filter tools and capabilities exposed by the MCP server. If the user wishes to filter the openapi spec only for certain components, then the components field can be used to provide a list of components to filter the spec.

Components can be one of the following:

  • ems - For alarms related info (searching, ack and unack of alarms reported on Routing Director)
  • juniper-resiliency-interface - For device syslog info (retrieving syslog messages collected on Routing Director)
  • device-kpi - For fetching exception events related to Juniper Resiliency Interface (JRI) collected on Routing Director(forwarding, routing and os)

Usage

Starting the Server

bash
python RoutingDirectorMCP.py --config config.json

Command Line Options

bash
python RoutingDirectorMCP.py --help

Available options:

  • -H, --host: Server host (default: 127.0.0.1)
  • -p, --port: Server port (default: 30030)
  • -t, --transport: Transport type: streamable-http or stdio (default: streamable-http)
  • -c, --config: Path to configuration file (required)
  • -v, --verbose: Enable verbose logging

Example: Start with Custom Configuration

bash
python RoutingDirectorMCP.py \
  --config config.json \
  --host localhost \
  --port 8000 \
  --transport streamable-http \
  --verbose

Authentication between the MCP Server and the MCP Host(Claude/Copilot etc)

Token Management

The server supports token-based authentication through a token manager. If a tokens file exists, authentication is automatically enabled for HTTP transports.

For stdio transport, authentication is bypassed as it's typically used in secure local environments.

Enable authentication between MCP server and MCP client.

You can use file-based token authentication for communication between an MCP client and MCP
server. To generate a token, execute the following command in your local system:

bash
   python utils/mcp/token_cli.py generate --client-id sv@juniper.net --description "Token for SV"  

Where, client-id - is an ID that you use for generating the authentication token.
The following is a sample of the generated output:

Code
Generated new token:  
 ID: my-client  
 Token: apa_CA98sH_VwEBd79aHA6O9NxbhXQN_RqaK  
 Description: Production API  

Save the generated token in a .tokens file. By default, the token is saved in the root directory of the GitHub MCP repository.

Logging

Enable detailed logging for debugging:

bash
LOG_LEVEL=DEBUG python RoutingDirectorMCP.py --config config.json --verbose

Connecting to the MCP Server

Users can use any MCP Host (like Claude, Copilot, Chatgpt, etc.) to connect to the MCP server. When configuring the MCP Host, use the same transport type, host, and port as specified when starting the MCP server.

Configure Claude
To configure Claude:

  1. Open the Claude configuration file in a text editor.
    • On a macOS machine, run the following command in the Terminal: ~/Library/Application Support/Claude/claude_desktop_config.json • On a Windows machine, open command prompt and enter: %APPDATA%\Claude\claude_desktop_config.json
  2. Add your MCP server configuration as shown below:
config.json
      {  
       "mcpServers": {  
          "RoutingDirector": {  
             "command": "/Users/username/path-to-virtual-environment/.mcp_venv/bin/python",  
             "args": [ 
                "/Users/username/path-to-mcp-python-script/RoutingDirectorMCP.py", 
                "-c", 
                "/Users/username/path-to-config-json/config.json", 
                "-t", 
                "stdio"  
                ]  
             }  
          }  
      }  

  1. Save the file.
  2. Restart Claude.
  3. Verify the connection of Claude with MCP server.

Claude is connected to the MCP server if the MCP server tools are listed under + > Connectors.

Configure Copilot : To configure Copilot:

  1. Open Virtual Studio (VS) code.
    Alternatively, you can use any other Integrated Development Environment (IDE) that supports
    Copilot and MCP server,
  2. Open the MCP settings file using one of the following methods:
    • On a macOS, run the following command in the Terminal: Open ~/Library/Application\ Support/Code/User/mcp.json Where, user is your username on the macOS machine.
    • On a Windows machine, open command prompt and enter: C:/Users/YourUserName/AppData/Roaming/Code/User/mcp.json Where, user is your username on the Windows machine.
  3. Add the MCP server configuration to the settings file as shown below:
config.json
{  
     "mcpServers": {  
         "RoutingDirector": {  
         "command": "/Users/username/path-to-virtual-environment/.mcp_venv/bin/python",
         "args": [ 
               "/Users/username/path-to-mcp-python-script/RoutingDirectorMCP.py", 
               "-c", "/Users/username/path-to-config-json/config.json", 
               "-t", "stdio"  
            ]  
         }  
     }  
}  
  1. Save the file.
  2. Close and reopen VS code for the MCP configuration changes to take effect.
  3. Verify that Copilot is connected with the MCP server.
    Copilot is connected to the MCP server if you find messages indicating successful connection to the
    MCP server in the Output panel of VS code.
    Alternatively, you can view MCP server tools (API calls) listed in VS code Extensions.

To ensure that the MCP server has started correctly, view the MCP server logs. The logs are
generated based on the type of communication with the AI agent:
• Starting MCP server 'Juniper Routing Directory' with transport 'stdio' if stdio is used.
• INFO Starting MCP server 'Juniper Routing Directory' with transport 'http' on http://127.0.0.1:30030/mcp if
streamable-http is used.

For more details on configuring the MCP Servers in the MCP Host Apps , please refer VScode Copilot: https://code.visualstudio.com/docs/copilot/customization/mcp-servers Claude: https://code.claude.com/docs/en/mcp


Troubleshooting

Issue: "Config file path is required"

Solution: Ensure you provide the --config flag with a valid path to your configuration file.

Issue: "Mandatory key missing in MCP config file"

Solution: Verify that your config.json includes all required keys: http_url, org_id, and auth.

Issue: "Failed to authenticate"

Solution:

  • Verify your Routing Director credentials
  • Ensure the Routing Director instance is accessible at the configured http_url
  • Check that your username/password or API token is correct
  • Verify network connectivity to the Routing Director host

Issue: Connection Refused

Solution:

  • Verify the server is running with --host and --port matching your client configuration
  • Check firewall rules allow traffic on the configured port

Issue: "No tokens file found. Authentication DISABLED"

Solution: For HTTP transports requiring authentication, ensure token files are properly initialized. For development/testing, this is typically acceptable.


Release 2.10.0

Current version: v2.10.0

Juniper's Routing Director 2.10.0 User Guide: https://www.juniper.net/documentation/us/en/software/juniper-routing-director2.10.0/user-guide/index.html

Whats new?

  • Support for python 3.14
  • Bug fixes

Read the full README →View source on GitHub →

Related MCP Servers

View all in Other Tools and Integrations View all alternatives
  • Git logoGit
    Verified

    Tools to read, search, and manipulate Git repositories.

    🛠️ Other Tools and Integrations12 views
    Compare vs Git →
  • Time logoTime
    Verified

    Time and timezone conversion capabilities.

    🛠️ Other Tools and Integrations3 views
    Compare vs Time →
  • Memory logoMemory
    Verified

    Knowledge graph-based persistent memory system.

    🛠️ Other Tools and Integrations2 views
    Compare vs Memory →
  • Sequential Thinking logoSequential Thinking
    Verified

    Dynamic and reflective problem-solving through thought sequences.

    🛠️ Other Tools and Integrations1 views
    Compare vs Sequential Thinking →

Adoption & maintenance

Factual signals from GitHub, npm, and our automated checks — not a rating.

GitHub stars
4
Stargazers on the source repository.
Last commit
23d ago
Most recent push to the default branch.

Reviews

No reviews yet — be the first to share how this listing worked for you.

Frequently Asked Questions about Juniper Routing Director MCP Server

Juniper Routing Director MCP Server is a hosted MCP server. Add it as a remote server in your client's config: "mcpServers": { "juniper-routing-director-mcp-server": { "url": "http://127.0.0.1:30030/mcp" } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewJuniper Routing Director MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/juniper-routing-director-mcp-server?style=directory)](https://allmcps.com/mcp/juniper-routing-director-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/juniper-routing-director-mcp-server"><img src="https://allmcps.com/api/badge/juniper-routing-director-mcp-server?style=directory" alt="Juniper Routing Director MCP Server on AllMCPs" /></a>

Technical Specs & Signals

Category🛠️Other Tools and Integrations
More technical detailsExpand ▾
TransportSSE (Remote)
Last updatedSep 2, 2026
4/9 checks healthy over the last 46d
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
GitHub stars4
GitHub Star CountTotal stargazers on GitHub representing community popularity (4 stars).
Last commit23d ago
Last Repository CommitThe most recent commit or push recorded for this server's GitHub repository.Last commit on Sep 2, 2026
39Quality signal: Fair · 39/100How this signal is calculated ▾
Server availabilityNot measured

Not scored for repo-hosted servers — we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership10/20
Documentation & tools14/30
Adoption & activity5/15
Community engagement0/10

A guidance signal from public completeness & health data — not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

★ Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge — proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it — no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in 🛠️ Other Tools and Integrations →Alternatives to Juniper Routing Director MCP Server →Install in Claude DesktopInstall in CursorInstall in VS CodeSetup guides for all 13 MCP clients