Skip to content

Integrate Informat Mcp Server

Overview

Informat provides a built-in Mcp Server, which can be integrated with IDEs such as TRAE and Cursor to improve the efficiency of using the Informat platform and simplify development.

Integrate Informat Mcp Server in TRAE

Download TRAE

Visit the official website of TRAE to download the corresponding version of the application. Here we take Windows as an example.

Configure Informat Mcp Server

1. Import or Create Project

2. Add Mcp Server Configuration

When configuring Mcp Server in TRAE, follow the following format:

json
// Example:
// {
//   "mcpServers": {
//     "example-server": {
//       "command": "npx",
//       "args": [
//         "-y",
//         "mcp-server-example"
//       ]
//     }
//   }
// }

Here we directly use the template provided by Informat:

json
{
  "mcpServers": {
    "informatMcp": {
      "url": "{Informat service address}/web0/mcp/event", // For example: https://ai.ainformat.com//web0/mcp/event
      "headers": {
        "X-INFORMAT-APIKEY": "nqt8a140hiyxz2ef43oj9" // API KEY obtained from Informat Web API
      }
    }
  }
}

Use Informat Mcp Server to Assist Development

Integrate Informat Mcp Server in Cursor

Download Cursor

Visit the official website of Cursor to download the corresponding version of the application. Here we take Windows as an example.

Configure Informat Mcp Server

1. Import or Create Project

Click "open project" on the page and select your project folder in the pop-up file browser.

2. Add Mcp Server Configuration

When configuring Mcp Server in Cursor, follow the following format:

json
// Example:
// {
//   "mcpServers": {
//     "example-server": {
//       "command": "npx",
//       "args": [
//         "-y",
//         "mcp-server-example"
//       ]
//     }
//   }
// }

Here we directly use the template provided by Informat:

json
{
  "mcpServers": {
    "informatMcp": {
      "url": "{Informat service address}/web0/mcp/event", // For example: https://ai.ainformat.com//web0/mcp/event
      "headers": {
        "X-INFORMAT-APIKEY": "nqt8a140hiyxz2ef43oj9" // API KEY obtained from Informat Web API
      }
    }
  }
}

Press Ctrl + Shift + J to open the "Cursor Settings" page, find the "Tools & MCP" settings, and click "Add Custom MCP" to add MCP configuration.

Use Informat Mcp Server to Assist Development

Press Ctrl + K on the code editing page to evoke the AI dialogue, and select the mode as "Send to Chat".