Welcome to the ToolRegistry Hub documentation! This document provides detailed descriptions of all tools in the project.
ToolRegistry Hub is a Python library that provides various utility tools designed to support common tasks. Here are the main tool categories:
- Calculator Tools - Provides various mathematical calculation functions
- Date Time Tools - Handles date, time, and timezone conversions
- File Operations Tools - Provides file content manipulation functions
- File System Tools - Provides file system operation functions
- Web Search Tools - Provides web search functionality
- Unit Converter Tools - Provides conversions between various units
- Other Tools - Other utility tools
- Server Mode - REST API and MCP server
- Docker Deployment - Docker containerization deployment
View the navigation page for complete documentation structure and navigation links.
To use ToolRegistry Hub, first install the library:
pip install toolregistry-hubThen, you can import and use the required tools:
from toolregistry_hub import Calculator, DateTime, FileOps, FileSystem
# Use calculator
result = Calculator.evaluate("2 + 2 * 3")
print(result) # Output: 8
# Get current time
current_time = DateTime.now()
print(current_time)This documentation is organized by tool categories, with each tool category having its own page that details all tools, methods, and usage examples under that category.
If you want to contribute to ToolRegistry Hub, please refer to the GitHub repository.