NeilJo-GY/test111
3.1
If you are the rightful owner of test111 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 test111 MCP server is designed to facilitate seamless integration and execution of model context protocols, providing a robust environment for development and deployment.
test111
MCP server: test111
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": {
"test111": {
"command": "uv",
"args": ["run", "python", "server.py"],
"cwd": "/path/to/test111"
}
}
}
Project Structure
test111/
āāā 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