← Back to Plugins
MCP Server MCP

io.github.mia-platform/console-mcp-server

github By github 👁 1 views ▲ 0 votes

The official MCP Server from Mia-Platform to interact with Mia-Platform Console

Homepage Verified source GitHub

Install

npx -y @mia-platform/[email protected]

Configuration Example

{
  "remotes": [
    {
      "type": "streamable-http",
      "url": "https://console.cloud.mia-platform.eu/console-mcp-server/mcp",
      "headers": [
        {
          "description": "Authentication token (PAT or App token)",
          "isRequired": true,
          "isSecret": true,
          "name": "Authorization"
        }
      ]
    }
  ],
  "packages": [
    {
      "registryType": "npm",
      "identifier": "@mia-platform/console-mcp-server",
      "version": "1.2.2",
      "transport": {
        "type": "stdio"
      },
      "runtimeArguments": [
        {
          "description": "The runtime command to execute",
          "isRequired": true,
          "value": "run",
          "type": "positional"
        },
        {
          "description": "Run container in interactive mode",
          "isRequired": true,
          "format": "boolean",
          "value": "true",
          "type": "named",
          "name": "-i"
        },
        {
          "description": "Automatically remove the container when it exits",
          "format": "boolean",
          "value": "true",
          "type": "named",
          "name": "--rm"
        },
        {
          "description": "Set the MIA_PLATFORM_CLIENT_ID environment variable in the runtime, which is the client ID of the Service Account of the Mia-Platform Company you want to access.",
          "isRequired": true,
          "value": "MIA_PLATFORM_CLIENT_ID={mia-platform-client-id}",
          "variables": {
            "token": {
              "isRequired": true,
              "format": "string",
              "isSecret": true
            }
          },
          "type": "named",
          "name": "-e"
        },
        {
          "description": "Set the MIA_PLATFORM_CLIENT_ID environment variable in the runtime, which is the client secret of the Service Account of the Mia-Platform Company you want to access.",
          "isRequired": true,
          "value": "MIA_PLATFORM_CLIENT_SECRET={mia-platform-client-secret}",
          "variables": {
            "token": {
              "isRequired": true,
              "format": "string",
              "isSecret": true
            }
          },
          "type": "named",
          "name": "-e"
        },
        {
          "description": "The container image to run",
          "isRequired": true,
          "value": "ghcr.io/github/github-mcp-server",
          "type": "positional",
          "valueHint": "image_name"
        },
        {
          "description": "This is to specify the MCP server application",
          "isRequired": true,
          "value": "mcp-server",
          "type": "positional"
        },
        {
          "description": "This is the command to start the MCP server",
          "isRequired": true,
          "value": "start",
          "type": "positional"
        },
        {
          "description": "Flag to inform the server to use the stdio transport",
          "isRequired": true,
          "value": "--stdio",
          "type": "positional"
        },
        {
          "description": "Flag to inform the server about the MCP host to connect to",
          "isRequired": true,
          "value": "--host=https://console.cloud.mia-platform.eu",
          "type": "positional"
        }
      ]
    }
  ]
}
mcp model-context-protocol streamable-http npm

Comments

Sign in to leave a comment

Loading comments...