This is the MCP server of atest. Please start the MCP server with atest gRPC port. or start in Docker or start in npx You can also set the MCP server mode with the --mode flag. or as stdio mode: You can build the binary with the following command: You can build .dxt package with the following command: You can publish the package with the following command:
Add this skill
npx mdskills install LinuxSuRen/atest-mcp-serverProvides clear setup instructions but lacks documentation of actual MCP tools and capabilities
1This is the MCP server of [atest](https://github.com/linuxsuren/api-testing).23## Get started45Please start the MCP server with [atest](https://github.com/linuxsuren/api-testing) gRPC port.67```shell8atest-store-mcp server --runner-address 127.0.0.1:643859```1011or start in Docker1213```shell14docker run -p 7845:7845 ghcr.io/linuxsuren/atest-mcp-server --runner-address 127.0.0.1:6438515```1617or start in npx1819```shell20npx atest-mcp-server-launcher@latest server --mode=stdio --runner-address=localhost:6438521```2223You can also set the MCP server mode with the `--mode` flag.2425```shell26atest-store-mcp server --runner-address 127.0.0.1:64385 --mode=[sse|stdio]27```2829## MCP Server3031```json32{33 "mcpServers": {34 "atest": {35 "name": "atest",36 "type": "streamableHttp",37 "description": "The MCP server of atest",38 "isActive": true,39 "baseUrl": "http://localhost:7845",40 "disabledAutoApproveTools": []41 }42 }43}44```4546or as stdio mode:47```json48{49 "mcpServers": {50 "atest": {51 "name": "atest-mcp-stdio",52 "type": "stdio",53 "description": "",54 "isActive": true,55 "command": "atest-store-mcp",56 "args": [57 "server",58 "-m=stdio",59 "--runner-address=localhost:64385"60 ]61 }62 }63}64```6566## How to build6768You can build the binary with the following command:69```shell70make build71```7273You can build `.dxt` package with the following command:74```shell75npm install -g @anthropic-ai/dxt76dxt pack77```7879## How to publish8081You can publish the package with the following command:82```shell83npm login --registry https://registry.npmjs.com84npm publish --registry https://registry.npmjs.com8586mcp-publisher login github87mcp-publisher publish88```8990> read more about [mcp-publisher](https://github.com/modelcontextprotocol/registry/blob/main/docs/guides/publishing/publish-server.md)91
Full transparency — inspect the skill content before installing.