
MCP Inspector Assistant
Provides programmatic access to MCP server testing, debugging, and validation capabilities by wrapping the official MCP Inspector. Enables users to test tools, validate protocol compliance, discover server capabilities, and debug MCP servers through natural language interactions.
README
MCP Inspector Assistant
A powerful MCP server that wraps the official MCP Inspector to provide programmatic access to server testing, debugging, and validation capabilities.
Features
- Server Inspection: Start the MCP Inspector UI or CLI for any MCP server
- Tool Testing: Test individual tools with specific arguments
- Protocol Validation: Verify MCP protocol compliance
- Capability Discovery: List all tools, resources, and prompts of a server
- Debug Mode: Run servers with debug output and capture logs
- Automatic Updates: Uses the official inspector package for latest features
Installation
npm install
Usage
As MCP Server (stdio)
npm start
As HTTP Service
npm run http
The HTTP service runs on port 8206 by default (configurable via MCP_INSPECTOR_PORT
).
Available Tools
start_inspector
Start the MCP Inspector UI or CLI for a specific server.
{
"tool": "start_inspector",
"arguments": {
"serverPath": "/path/to/mcp-server/standalone.js",
"port": 5173,
"mode": "ui"
}
}
stop_inspector
Stop any running MCP Inspector instance.
{
"tool": "stop_inspector",
"arguments": {}
}
test_tool
Test a specific tool on an MCP server.
{
"tool": "test_tool",
"arguments": {
"serverPath": "/path/to/server.js",
"toolName": "myTool",
"arguments": {
"param1": "value1"
}
}
}
list_server_capabilities
List all capabilities (tools) of an MCP server.
{
"tool": "list_server_capabilities",
"arguments": {
"serverPath": "/path/to/server.js"
}
}
validate_protocol
Validate that a server follows MCP protocol correctly.
{
"tool": "validate_protocol",
"arguments": {
"serverPath": "/path/to/server.js",
"checks": ["initialization", "tools"]
}
}
debug_server
Run a server with debug output and capture logs.
{
"tool": "debug_server",
"arguments": {
"serverPath": "/path/to/server.js",
"duration": 30
}
}
Examples
Testing a Gateway Assistant Tool
# Using HTTP API
curl -X POST http://localhost:8206/tools/test_tool \
-H "Content-Type: application/json" \
-d '{
"serverPath": "/path/to/mcp-gateway-assistant/standalone.js",
"toolName": "check_service_health",
"arguments": {
"services": ["secrets", "logging"]
}
}'
Starting Inspector UI
# Start inspector for secrets assistant
curl -X POST http://localhost:8206/tools/start_inspector \
-H "Content-Type: application/json" \
-d '{
"serverPath": "/path/to/mcp-secrets-assistant/standalone.js",
"mode": "ui"
}'
Testing
# Test MCP mode
npm test
# Test HTTP mode
npm run test:http
Integration with Claude Desktop
Add to your claude_desktop_config.json
:
{
"mcpServers": {
"inspector-assistant": {
"command": "node",
"args": [
"/path/to/mcp-inspector-assistant/standalone.js"
],
"env": {}
}
}
}
Dependencies
This assistant uses the official @modelcontextprotocol/inspector
package, ensuring compatibility with the latest MCP Inspector features and updates.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.