We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/firehydrant/firehydrant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manifest.json•1.88 kB
{
"manifest_version": "0.3",
"name": "firehydrant-mcp",
"version": "0.0.3",
"description": "",
"long_description": "FireHydrant MCP Server: An MCP server for interacting with FireHydrant's API.",
"author": {
"name": "FireHydrant"
},
"server": {
"type": "node",
"entry_point": "./bin/mcp-server.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/bin/mcp-server.js",
"start",
"--api-key",
"${user_config.api_key}"
]
}
},
"display_name": "Firehydrant Mcp",
"prompts": [],
"keywords": [
"firehydrant",
"mcp",
"server"
],
"user_config": {
"api_key": {
"type": "string",
"title": "api_key",
"description": "The api_key to use for the request",
"required": true,
"sensitive": true
}
},
"tools": [
{
"name": "list-incidents",
"description": "List incidents\n\nList all of the incidents in the organization"
},
{
"name": "create-incident",
"description": "Create an incident\n\nCreate a new incident"
},
{
"name": "list-retros-by-incident",
"description": "Lists all retrospectives (RCAs) for an incident. Among other things, this is useful for:\n\n - Getting a list of retrospectives for an incident,\n - Getting basic data about a retrospective.\n - Getting the fields of a retrospective.\n"
},
{
"name": "update-retrospective-field",
"description": "Updates a field in a retrospective (RCA) for an incident. Among other things, this is useful for:\n\n - Updating a field in a retrospective,\n - Updating the value of a field in a retrospective.\n\nThe value should be unstyled HTML.\n"
},
{
"name": "list-alerts",
"description": "List alerts\n\nRetrieve all alerts, including Signals alerts and third-party"
}
]
}