- Home
- MCP servers
- AntBot
AntBot
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jinwon-antbotcore-antbot-mcp-server": {
"command": "node",
"args": [
"C:\\path\\to\\antbot-mcp-server\\build\\index.js"
]
}
}
}You set up and run the AntBot MCP Server to expose project management and execution capabilities for AntBot through the Model Context Protocol. This server lets you list AntBot projects, view detailed project info, run projects with parameters, and retrieve recent execution logs, all while handling caching, logging, and automatic configuration loading.
How to use
You interact with the MCP server from an MCP client or automation tool. Start by ensuring the server is running, then perform the following practical tasks in sequence: fetch the list of available AntBot projects, inspect a project to learn required and optional parameters, run a selected project with the necessary parameters, and finally retrieve the latest execution logs to verify results and diagnose issues. The server also automatically loads AntBot Robot settings and caches project information to speed up repeated requests.
How to install
Prerequisites you need before installation are that you use Node.js version 16 or later and operate in a Windows environment if you want to take advantage of the Windows process detection feature.
Follow these concrete steps to install and run the MCP server locally:
Additional sections
Configuration and start-up details are designed to be practical and self-contained. The server automatically reads the AntBot Robot configuration from a specific path and validates essential settings at startup. If required settings are missing, you will see an error urging you to complete the manager integration before proceeding.
For typical development and debugging, you can verify logging output and monitor the latest mcprun logs from the designated log directory. This helps you diagnose problems with project download, parameter loading, or execution steps.
If you are integrating with Claude Desktop, you can register the MCP server by adding a stdio configuration that runs the built index file via Node.js. The example below demonstrates a local runtime setup.
{
"mcpServers": {
"antbot_mcp": {
"command": "node",
"args": ["C:\\path\\to\\antbot-mcp-server\\build\\index.js"]
}
}
}
Available tools
Get_AntBot_Project_List
Returns a list of AntBot projects available to the manager, enabling you to discover what projects you can run.
Get_AntBot_Project_Info
Fetches detailed information for a specific AntBot project, including required and optional parameters and a summary.
Run_AntBot_Project
Executes a selected AntBot project with the provided parameters and project path, ensuring parameters are applied during run.
Get_Last_Mcprun_Log
Retrieves the latest mcprun log entries to help you verify execution status and troubleshoot issues.