Skip to content

Commit cbe48b8

Browse files
authored
Add Cylera MCP Server (github#291)
* Add Cylera MCP Server * task validate insists the icon must be a png or svg
1 parent 7a50af3 commit cbe48b8

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: cylera-mcp-server
2+
image: mcp/cylera-mcp-server
3+
type: server
4+
meta:
5+
category: productivity
6+
tags:
7+
- productivity
8+
about:
9+
title: The official MCP Server for Cylera.
10+
description: |
11+
Brings context about device inventory, threats, risks and utilization powered by the Cylera Partner API into an LLM.
12+
icon: https://github.com/Cylera/cylera-mcp-server/blob/main/assets/cylera_logo.png?raw=true
13+
source:
14+
project: https://github.com/Cylera/cylera-mcp-server
15+
config:
16+
description: Configure the connection to the official MCP Server for Cylera.
17+
secrets:
18+
- name: cylera-mcp-server.cylera.base_url
19+
env: CYLERA_BASE_URL
20+
example: "https://partner.us1.cylera.com Or https://partner.uk1.cylera.com/ Or https://partner.demo.cylera.com"
21+
- name: cylera-mcp-server.cylera.username
22+
env: CYLERA_USERNAME
23+
example: "Your username you use to login to Cylera"
24+
- name: cylera-mcp-server.cylera.password
25+
env: CYLERA_PASSWORD
26+
example: "Your password you use to login to Cylera"
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
[
2+
{
3+
"name": "get_device",
4+
"description": "Get details about a device by MAC address",
5+
"arguments": []
6+
},
7+
{
8+
"name": "get_procedures",
9+
"description": "Provide details about how the device has been utilized recently by providing details of the procedures performed",
10+
"arguments": []
11+
},
12+
{
13+
"name": "get_device_attributes",
14+
"description": "Get attributes for a device by MAC address",
15+
"arguments": []
16+
},
17+
{
18+
"name": "get_risk_mitigations",
19+
"description": "Get risk mitigations for a given CVE reference",
20+
"arguments": []
21+
},
22+
{
23+
"name": "get_subnets",
24+
"description": "Get a list of subnets with optional filtering",
25+
"arguments": []
26+
},
27+
{
28+
"name": "get_vulnerabilities",
29+
"description": "Returns a paginated list of vulnerabilities with filtering options",
30+
"arguments": []
31+
},
32+
{
33+
"name": "search_for_devices",
34+
"description": "Search for devices that match the provided search criteria with comprehensive filtering options",
35+
"arguments": []
36+
}
37+
]

0 commit comments

Comments
 (0)