diff --git a/servers/signoz-mcp-server/server.yaml b/servers/signoz-mcp-server/server.yaml new file mode 100644 index 0000000..105217b --- /dev/null +++ b/servers/signoz-mcp-server/server.yaml @@ -0,0 +1,39 @@ +name: signoz-mcp-server +image: mcp/signoz-mcp-server +type: server +meta: + category: monitoring + tags: + - monitoring +about: + title: Signoz MCP Server + description: The Signoz MCP Server acts as a bridge between AI assistants (or any MCP protocol-compatible client) and a Signoz observability backend. It exposes a set of standardized tools and APIs that allow clients to query, analyze, and interact with observability data from a Signoz instance in a secure and programmatic way. + icon: https://avatars.githubusercontent.com/u/110093317?v=4 +source: + project: https://github.com/DrDroidLab/signoz-mcp-server +config: + description: Configure credentials for Signoz MCP Server + env: + - name: SIGNOZ_HOST + example: https://demo.signoz.io + value: '{{signoz-mcp-server.signoz_host}}' + - name: SIGNOZ_API_KEY + example: xyz + value: '{{signoz-mcp-server.signoz_api_key}}' + - name: SIGNOZ_SSL_VERIFY + example: "true" + value: '{{signoz-mcp-server.signoz_ssl_verify}}' + - name: MCP_TRANSPORT + example: stdio + value: '{{signoz-mcp-server.mcp_transport}}' + parameters: + type: object + properties: + signoz_host: + type: string + signoz_api_key: + type: string + signoz_ssl_verify: + type: string + mcp_transport: + type: string