MCP Integration
Connect AI Agents natively to Tools-Hut using the Model Context Protocol (MCP)
What is MCP?
The Model Context Protocol (MCP) is an open-source standard created by Anthropic that standardizes how Artificial Intelligence agents (like Claude or custom LLM bots) access external tools to perform operations. Instead of engineering custom API glue codes for every AI integration, agents simply read the MCP manifest and understand instantly what the tool does and what parameters to supply.
Tools-Hut Integration
Tools-Hut exposes our powerful internal financial calculators (SIP, SWP, and Loan EMI logic) securely through an entirely public MCP-compliant API gateway. Your AI agent can POST requests here directly to securely derive exact amortization or maturity metrics without manually crunching numbers.
- Endpoint Configuration:
POST https://www.tools-hut.com/api/v1/mcp - Required Transport: Standard HTTP REST logic utilizing JSON-RPC 2.0 signatures
- Public Access: Fully open (no Authentication bearer tokens required)
Available Registered Tools
calculateSIP
Projects monthly investment wealth accumulation factoring in step-up percentages.
calculateSWP
Simulates fixed monthly withdrawals against a primary corpus adjusted for inflation.
calculateLoanEMI
Calculates total exact interest generation and monthly EMI obligations.
Example Payload
Because Tools-Hut utilizes HTTP transport over standard JSON-RPC 2.0 structure, invoking a tool requires the tools/call invocation syntax directly attached to the POST body.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "calculateSIP",
"arguments": {
"monthlyInvestment": 5000,
"annualReturnRate": 12,
"years": 10
}
}
}