- Home
- MCP servers
- TreePod Financial
TreePod Financial
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"janetsep-treepod-financial-mcp": {
"command": "node",
"args": [
"/Users/janetsepulvedacorrea/Desktop/AGENTES/treepod-financial-mcp/index.js"
]
}
}
}You deploy TreePod Financial MCP Server to provide intelligent financial answers for TreePod Glamping inside Claude Desktop using the MCP protocol. This server exposes practical financial tools, supports quick installation, and handles common operational questions such as occupancy, tariffs, and revenue forecasts.
How to use
Once you have the MCP server running, you interact with it using an MCP client integrated into Claude Desktop. You can ask natural language questions and request specific actions related to TreePod finances. Typical workflows include analyzing current finances, calculating reservation tariffs by date range and channel, checking current and upcoming occupancy, comparing pricing with local competition, and generating executive reports. You can also request projections for future revenue and ask for pricing optimization to balance occupancy and revenue. Use clear prompts like: “Analyze the finances of TreePod for this month,” “Calculate a tariff for 2 guests from January 20 to 25 via Airbnb,” or “Generate the monthly business report.” If you want forecasts, ask for revenue projections for the next week, next month, or next quarter.
How to install
Prerequisites you need before installing the server are Node.js version 18 or higher, npm, Claude Desktop, and macOS. Follow these steps to set up the MCP server quickly.
Navigate to the project directory, grant execute permissions to the installer, and run the installer script.
How to install
cd /Users/janetsepulvedacorrea/Desktop/AGENTES/treepod-financial-mcp
chmod +x install.sh
./install.sh
Manual configuration if automatic install fails
If the automatic install does not complete, perform these steps to configure and run the server locally.
Install dependencies and prepare the project
Manual configuration steps
cd /Users/janetsepulvedacorrea/Desktop/AGENTES/treepod-financial-mcp
npm install
Configure Claude Desktop to load the MCP server by editing the Claude configuration file and adding the server entry.
{
"mcpServers": {
"treepod-financial": {
"command": "node",
"args": ["/Users/janetsepulvedacorrea/Desktop/AGENTES/treepod-financial-mcp/index.js"],
"env": {}
}
}
}
Restart Claude Desktop
killall Claude
# Then open Claude Desktop manually
Diagnóstico
If you want to verify the setup, run the diagnostic script to check that everything is wired correctly.
chmod +x diagnose.sh
./diagnose.sh
Project structure and endpoints
The project includes an entry point, a built-in MCP server with all tools, and scripts for installation, setup, diagnostics, and configuration.
Available tools
analyze_finances
Analyzes current finances with key metrics, goals, and recommendations.
calculate_tariff
Calculates tariffs for reservations by season, guests, and sales channel.
check_occupancy
Checks current and upcoming occupancy status for domes.
compare_competition
Compares prices and services with local competition.
generate_report
Generates executive business reports such as monthly, financial, occupancy, and competition reports.
get_business_status
Shows the overall current business status with alerts and KPIs.
predict_revenue
Predicts future revenue based on historical data and trends.
optimize_pricing
Suggests pricing optimizations based on competition and occupancy.