testing-mcp-server
3.2
If you are the rightful owner of testing-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcpreview.com.
The mcp-testing-server is a tool designed for testing Model Context Protocol (MCP) servers, particularly useful for developers working with Node.js environments.
mcp-testing-server
Сборка:
npm run build
Запуск инспектора для тестирования:
npm run inspect
Конфиг для Cline (есть только для VSCode, я бы рекомендовал использовать его):
{
"mcpServers": {
"tms-adapter": {
// Путь до исполняемого файла, запустится только на 23 ноде
"command": "/Users/$USER/.nvm/versions/node/v23.7.0/bin/node",
"args": [
// Путь до сбилженного mcp сервера
"/Users/$USER/mcp-testing-tool/build/index.js"
],
"disabled": false,
"env": {
// Токен для TMS
"TMS_TOKEN": ""
}
}
}
}
Конфиг для Continue (есть и для VSCode и для WS):
{
// ...
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
// Путь до исполняемого файла, запустится только на 23 ноде
"command": "/Users/$USER/.nvm/versions/node/v23.7.0/bin/node",
"args": [
// Путь до сбилженного mcp сервера
"/Users/$USER/mcp-testing-tool/build/index.js"
]
}
}
]
},
// ...
}