c

console-mcp-server

@mia-platform/console-mcp-server
0 Stars 8 次浏览 mia-platform 更新于 2026-08-23

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

MCP 服务配置

复制以下 JSON 到 OPClaw 或其他 MCP 客户端的配置文件中即可使用

{
  "mcpServers": {
    "@mia-platform/console-mcp-server": {
      "args": [
        "@mia-platform/console-mcp-server@1.2.2"
      ],
      "command": "npx"
    }
  }
}

Streamable HTTP 传输配置

{
  "mcpServers": {
    "console-mcp-server": {
      "env": {
        "Authorization": ""
      },
      "type": "streamable-http",
      "url": "https://console.cloud.mia-platform.eu/console-mcp-server/mcp"
    }
  }
}

可用工具 (5 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

tavily_search 14 个参数 需填 1 项

Search the web for current information on any topic. Use for news, facts, or data beyond your knowledge cutoff. Returns snippets and source URLs.

必填参数:query

tavily_extract 6 个参数 需填 1 项

Extract content from URLs. Returns raw page content in markdown or text format.

必填参数:urls

tavily_crawl 11 个参数 需填 1 项

Crawl a website starting from a URL. Extracts content from pages with configurable depth and breadth.

必填参数:url

tavily_map 8 个参数 需填 1 项

Map a website's structure. Returns a list of URLs found starting from the base URL.

必填参数:url

tavily_research 2 个参数 需填 1 项

Perform comprehensive research on a given topic or question. Use this tool when you need to gather information from multiple sources to answer a question or complete a task. Returns a detailed response based on the research findings.

必填参数:input

服务介绍

Mia-Platform Console MCP Server

pipeline status
license

# Introduction

The Mia-Platform Console MCP Server is a Model Context Protocol (MCP) server that provides seamless integration
with Mia-Platform Console APIs, enabling advanced automation and interaction capabilities for developers and tools.

# Prerequisites

To use the Mia-Platform Console MCP Server in your client (such as Visual Studio Code, Claude Desktop, Cursor, Gemini CLI or others), you first need to have a valid account on the Mia-Platform Console instance you want to communicate with. You will be required also to include the instance host address you in the environment variable named CONSOLE_HOST.

You may decide to access via:

  • Service Account to perform machine-2-machine authentication and have full access to the MCP capabilities to perform operations on the Company where the S.A. has been created (for more information, visit our official documentation on how to create a Mia-Platform Service Account). If you do so, you need to include the environment variables MIA_PLATFORM_CLIENT_ID and MIA_PLATFORM_CLIENT_SECRET.
  • Using your own credentials: Mia-Platform Console MCP Server follows the Model Context Protocol specifications on authentication using OAuth2.1 and Dynamic Client Registration: clients that follow that specifications will be able to discover the authentication endpoints of the selected Mia-Platform instance you want to access to and guide you to perform the log in.

# # How to Run

You can run stable versions of the Mia-Platform Console MCP Server using Docker. You can get detailed guide in the related page of the Mia-Platform documentation.

If you don't have Docker installed, or you simply wish to run it locally, you can use NPM and Node.js. Once you have cloned the
project you can run the commands:

npm ci
npm run build

These commands will install all the dependencies and then transpile the typescript code in the build folder.

NOTE

The server automatically loads environment variables from a .env file if present in the project root.
You can create one by copying default.env to .env and updating the values as needed.

Once these steps are completed you can setup the MCP server using the node command like the following:

{
  "mcp": {
    "servers": {
      "mia-platform-console": {
        "command": "node",
        "args": [
          "${workspaceFolder}/mcp-server",
          "start",
          "- -stdio",
          "- -host=https://console.cloud.mia-platform.eu"
        ]
      }
    }
  }
}

TIP

Alternatively, you start the service after the build with the following command:

node mcp-server start

Then add the mcp server to your client simply including the url. As example for VS Code:

{
  "mcp": {
    "servers": {
      "mia-platform-console": {
        "type": "http",
        "url": "http://localhost:3000/console-mcp-server/mcp"
      }
    }
  }
}

Instead of 3000, please include the port defined in the environment variable PORT. More detail in the [Environment Variables](# environment-variables) section.

# # Environment Variables

Environment variables located inside a file named .env are automatically included at service startup.

| Variable Name | Description | Required | Default Value |
|- -- -- -- -- -- -- --|- -- -- -- -- -- --|- -- -- -- -- -|- -- -- -- -- -- -- --|
| LOG_LEVEL | Log level of the application | No | info |
| PORT | Port number for the HTTP server | No | 3000 |
| CONSOLE_HOST | The host address of the Mia-Platform Console instance | Yes | - |
| MIA_PLATFORM_CLIENT_ID | Client ID for Service Account authentication | No | - |
| MIA_PLATFORM_CLIENT_SECRET | Client secret for Service Account authentication | No | - |
| CLIENT_EXPIRY_DURATION | Duration in seconds of clients generated with the DCR authentication flow. After this time, the client will be expired and cannot be used anylonger. | No | 300 |

# Local Development

To help with the development of the server you need Node.js installed on your machine.
The recommended way is to use a version manager like nvm or mise.

Once you have setup your environment with the correct Node.js version declared inside the .nvmrc file you can run the
following command:

npm ci

Once has finished you will have all the dependencies installed on the project, then you have to prepare an environment
file by copying the default.env file and edit it accordingly.

cp default.env .env

Finally to verify everything works, run:

npm run local:test

If you are not targeting the Console Cloud installation you can use the - -host flag and specify your own host

npm run local:test  - - - -host https://CONSOLE_HOST

This command will download and launch the MCP inspector on http://localhost:6274 where you can test if the
implementation will work correctly testing the discovery of tools and prompts without the needs of a working llm environment.

To run tests for new implementations you can use:

npm test

Or running a test for a single file run:

node - -test - -import tsx <FILE_PATH>

相关 MCP 服务