cloudconnexa-mcp-server

OpenVPN/cloudconnexa-mcp-server

3.3

If you are the rightful owner of cloudconnexa-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The OpenVPN MCP Server for CloudConnexa facilitates seamless interaction with CloudConnexa environments using standardized tools compatible with any MCP client.

Tools
5
Resources
0
Prompts
0

OpenVPN MCP Server for CloudConnexa

This MCP server enables interaction with your CloudConnexa environment through standardized tools that can be used by any MCP client of your choice, such as 5ire, Claude Desktop and Cursor. It empowers AI assistants to manage your CloudConnexa environment and fulfil requests made in natural language.

Table of Contents

📋 Prerequisites

To use the OpenVPN MCP Server for CloudConnexa, you’ll need:


⚙️ Setting up your OpenVPN MCP Server for CloudConnexa

1. Generate Your API Token

Log in to CloudConnexa and navigate to API & Logs → API and click Create credentials

Fill in a name, click Create, and copy your Public API Client ID and Public API Client Secret

Toggle Enable API for this Cloud ID should be set to enabled

2. In the root of the downloaded repository build the docker container:

docker build -t mcp-server-public .

3. Start the MCP server:

In Terminal run:

bash start.sh

Then download 5ire App and complete the MCP setup:

🤖 Adding the MCP Server to 5ire App

1. In 5ire App go to Tools and click on +Local button 2. This will open the Add New Tool modal. Fill in the following details:

3. Click Save

4. Switch the toggle to ON to turn on the MCP server

6. Head to Workspace → Providers and add your LLM Provider API key

7. Click New Chat

8. Select your desired LLM model and enter the prompt: "Discover graphql_schema and tell me what tools are available?"

That's it, your MCP server is now connected to 5ire App and you can ask your AI assistant to execute any of the available tools. Check out the example prompts section in this README for some suggestions.


🤖 Adding GPT-5 model to 5ire App

GPT-5 has performed best during our tests, however it is not available by default in 5ire App. Here are brief instructions on how to add it as an available model:

1. In 5ire App head to: Workspace → Providers → OpenAI and click the "+ Model" button

2. Fill in gpt-5 for Name and Display Name

3. Set Context Window to 400000 and Max Tokens to 16384 -

4. Set Input Price to $1.25 and Output Price to $0

5. Toggle Tools to ON

6. Click Save

7. Go to New Chat change temperature to 1.0 (GPT-5 requires >1) and adjust Max Tokens value

These are example values, you should adjust them based on your own cost estimation for using GPT-5.


💬 Example Prompts

"What are the available tools in graphql_schema"

This prompt is required to be run once in order for the MCP client to discover all available tools

Here are some examples of queries:

"Which users are online right now?"
"What is my device posture policy?"
"Show DNS logs for yesterday"
"Show me a summary of my configuration"

Currently only read-only tools are available, but we are working on expanding the list of available tools.


🛠 Available Tools

CategoryToolDescription
Hosts and relatedhostsList all hosts.
hostById(id)Get a host by ID.
hostApplications(hostId)List applications attached to a host.
hostApplicationById(id)Get a specific host application.
hostServices(hostId)List IP-based services on a host.
hostServiceById(id)Get a host IP service by ID.
hostConnectors(hostId)List connectors associated with a host.
hostConnectorsById(id)Get a specific host connector.
Networks and relatednetworksList all networks.
networkById(id)Get a network by ID.
networkApplications(networkId)List applications associated with a network.
networkApplicationById(id)Get a specific network application.
networkServices(networkId)List IP-based services on a network.
networkServiceById(id)Get a network IP service by ID.
networkRoutes(networkId)List network routes (IPv4/IPv6).
networkRouteById(id)Get a network route by ID.
networkConnectors(networkId)List connectors for a network.
networkConnectorsById(id)Get a specific network connector.
Traffic & sessionsvisitedDomains(startHour, hoursBack=1)Domain resolution stats for a time window.
sessions(startDate, endDate, ...)Retrieve session records (active/historical).
Users, groups, devicesusersList users.
userById(id)Get a user by ID.
userGroupsList user groups.
userGroupById(id)Get a user group by ID.
devices(userId)List devices, optionally filtered by user.
deviceById(id, userId)Get a device by ID for a user.
vpnRegionsList available VPN regions.
Access controlaccessGroupsList access groups/policies.
accessGroupById(id)Get an access group by ID.
accessVisibilityEnabledWhether access visibility is enabled.
Device posturedevicePosturesList device posture policies.
devicePostureById(id)Get a device posture policy by ID.
DNS and loggingdnsLogUserResolutionsEnabledWhether per-user DNS resolution logging is enabled.
dnsRecordsList custom DNS records.
dnsRecordById(id)Get a DNS record by ID.
dnsServerAddressesGet DNS server addresses configured.
dnsProxyEnabledWhether DNS proxying is enabled.
defaultDnsSuffixDefault DNS suffix.
dnsZonesList DNS zones.
Location contextslocationContextsList location context policies.
locationContextById(id)Get a location context by ID.
SCIMscimCurrentUserGet SCIM token/config info for the current user.
scimUsers(startIndex, count, filter)SCIM-compliant user listing.
scimUserById(id)Get a SCIM user by ID.
Organization settingstopologyCurrent topology setting.
defaultRegionDefault VPN region.
snatWhether SNAT is enabled.
subnetOrganization subnets (IPv4/IPv6).
domainRoutingSubnetSubnet used for domain routing.
clientOptionsClient option flags.
connectionTimeoutConnection timeout (seconds).
defaultConnectAuthDefault connect authentication policy.
deviceAllowancePerUserMax devices per user.
forceUpdateDeviceAllowanceForce device allowance update flag.
deviceEnforcementLevelDevice compliance enforcement level.
profileDistributionClient/profile distribution method.
twoFactorAuthEnabledWhether 2FA is enabled.
trustedDevicesAllowedWhether trusted devices are allowed.
ldapGroupMappingsLDAP group-to-app mappings.
samlGroupMappingsSAML group-to-app mappings.

Troubleshooting

GPT-5 model is not available
The LLM model does not support this temperature
  • GPT-5 model supports only temperature values of 1.0 or higher
Context window size reached
  • Just above the prompt in 5ire App you can change how many tokens should the context length be. If you often run into this error you can adjust this setting.
LLM replies that it can not reach MCP tools
  • Ensure that under Tools, the MCP server shows a green "Online" status, if not then turn the toggle ON. If it's still not working check in the terminal that the server is running.
LLM replies that it can not find any MCP tools
  • Try running this prompt: "Discover graphql_schema" then try again.
API credentials not working?
  • Try generating a new pair of credentials from CloudConnexa -> API & Logs -> API

Known issues

GPT-4 and o4-mini models struggle to build correct MCP tool requests in some instances. In comparison GPT-5 shows significantly more accurate performance.

Contributing

We welcome your contributions. Enhancements, bug reports, and documentation improvements are valued.

  1. Fork this repository

  2. Create a feature branch (e.g., git checkout -b feature/new-tool)

  3. Submit a pull request for review


License

This project is licensed under the .