这是atest的MCP服务器。
请使用atest的gRPC端口启动MCP服务器。
atest-store-mcp server --runner-address 127.0.0.1:64385
或在Docker中启动:
docker run -p 7845:7845 ghcr.io/linuxsuren/atest-mcp-server --runner-address 127.0.0.1:64385
或在npx中启动:
npx atest-mcp-server-launcher@latest server --mode=stdio --runner-address=localhost:64385
您还可以使用--mode标志设置MCP服务器模式。
atest-store-mcp server --runner-address 127.0.0.1:64385 --mode=[sse|stdio]
{
"mcpServers": {
"atest": {
"name": "atest",
"type": "streamableHttp",
"description": "atest的MCP服务器",
"isActive": true,
"baseUrl": "http://localhost:7845",
"disabledAutoApproveTools": []
}
}
}
或作为stdio模式:
{
"mcpServers": {
"atest": {
"name": "atest-mcp-stdio",
"type": "stdio",
"description": "",
"isActive": true,
"command": "atest-store-mcp",
"args": [
"server",
"-m=stdio",
"--runner-address=localhost:64385"
]
}
}
}
您可以使用以下命令构建二进制文件:
make build
您可以使用以下命令构建.dxt包:
npm install -g @anthropic-ai/dxt
dxt pack
您可以使用以下命令发布包:
npm login --registry https://registry.npmjs.com
npm publish --registry https://registry.npmjs.com
mcp-publisher login github
mcp-publisher publish
有关mcp-publisher的更多信息,请参阅。