ACNet-AI/mcp-inspector-server
3.1
If you are the rightful owner of mcp-inspector-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@mcphub.com.
The mcp-inspector-server is a Model Context Protocol (MCP) server designed to facilitate the integration and management of tools and resources in a structured environment.
mcp-inspector-server
MCP server: mcp-inspector-server
Quick Start
# Install dependencies
uv sync
# Start server
uv run python server.py
Configuration
Add to your Claude Desktop config (claude_desktop_config.json
):
{
"mcpServers": {
"mcp-inspector-server": {
"command": "uv",
"args": ["run", "python", "server.py"],
"cwd": "/path/to/mcp-inspector-server"
}
}
}
Project Structure
mcp-inspector-server/
āāā config.yaml # Server configuration
āāā pyproject.toml # Python project configuration
āāā server.py # Server entry file
āāā README.md # Documentation
āāā CHANGELOG.md # Version change log
āāā .env # Environment variables configuration
āāā .gitignore # Git ignore file
āāā tools/ # Tools implementation directory
āāā resources/ # Resources implementation directory
āāā prompts/ # Prompt template directory
Development
Edit server.py
to add your functionality:
@server.tool()
def my_tool(arg: str) -> str:
"""Tool description"""
return f"Result: {{arg}}"
Generated by MCP Factory