
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
@stackone/mcp-test
Advanced tools
Can Claude accurately use your MCP server tools?

Automated testing tool for remote model context protocol (MCP) servers.
Claude Code tries to use all available tools exposed by an MCP server and generates test reports.
The tool automatically discovers available tools from the MCP server using the official MCP client SDK before testing begins.
npm install -g @anthropic-ai/claude-code
export ANTHROPIC_API_KEY=your-api-key
Or create a .env file (Bun will load it automatically):
ANTHROPIC_API_KEY=your-api-key
If you encounter "Claude Code executable not found" errors:
# Set the path to your Claude installation
export CLAUDE_CODE_PATH=$(which claude)
npx @stackone/mcp-test --transport http --url http://localhost:3000/mcp
npm install -g @stackone/mcp-test
mcp-test --transport http --url http://localhost:3000/mcp
git clone https://github.com/your-org/mcp-connectors.git
cd apps/mcp-test
bun install
bun start --transport http --url http://localhost:3000/mcp
Test an MCP server running locally:
mcp-test --transport http --url http://localhost:3000/mcp
Include authentication headers:
mcp-test \
--transport http \
--url https://api.example.com/mcp \
--headers '{"Authorization": "Bearer your-token"}'
The testing tool follows this process:
listTools() on the official MCP client SDKFor each discovered tool, the tool:
Test results are saved to .agent/results_<server>_<timestamp>.json with the following structure:
{
"timestamp": "2025-01-09T10:30:00.000Z",
"server_url": "http://localhost:3000/mcp",
"tool_count": 2,
"tools_tested": [
{
"name": "search",
"input": {
"query": "python programming tutorial",
"maxResults": 5
},
"expected_output": "list of search results with urls and summaries",
"actual_output": { ... },
"success": true,
"suggestions": "consider adding pagination support"
}
]
}
# Clone the repository
git clone https://github.com/your-org/mcp-connectors.git
cd apps/mcp-test
# Install dependencies
bun install
# Run tests
bun test
# Build for production
bun run build
MIT
FAQs
automated testing for MCP servers
We found that @stackone/mcp-test demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain