# Token Bonding Curve Strategy AI Agent Connect

> Deterministic trading signals based on mathematical bonding curve deviations.

## Overview
- **Category:** finance
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_Wa8cNi9dMMnPSXhqBEkram6kLvPR9Xs5jbfAEF5t/ai-agent-connect
- **Tags:** bonding-curve, trading-signals, crypto-trading, algorithmic-trading, liquidity

## Description

This MCP server provides deterministic trading signals by evaluating token price deviations from a mathematical bonding curve. It identifies undervalued entry points and overvalued exit opportunities by comparing market prices to the theoretical fair value. Use `calculate_trading_signals` to generate BUY, SELL, or HOLD signals based on liquidity, volume, and curve progress. You can also use `get_curve_metrics` to analyze the mathematical state of the curve or `evaluate_liquidity_safety` to check if the reserve balance and daily volume meet risk thresholds.

## Tools

### calculate_trading_signals
Analyzes current market state against the bonding curve to generate specific BUY, SELL, or HOLD signals

### get_curve_metrics
Provides pure mathematical insights into the curve's state without generating trade signals

### evaluate_liquidity_safety
Determines if the current pool has enough depth to permit trading based on predefined risk thresholds

## Prompt Examples

**Prompt:** 
```
Analyze the current trading state for a token with an initial price of 0.01, a slope of 0.0005, max supply of 1,000,000, current supply of 500,000, reserve balance of 200,000, current price of 0.24, daily volume of 60,000, and rising volume.
```

**Response:** 
```
The current price is $0.24, the fair value is $0.26, and the curve progress is 50%. The signal is BUY.
```

**Prompt:** 
```
What are the current curve metrics for a token with initial price 0.01, slope 0.0005, max supply 1,000,000, and current supply 950,000?
```

**Response:** 
```
The fair value is $0.485, the curve progress is 95%, and the price at max supply will be $0.51.
```

**Prompt:** 
```
Is the liquidity safe for a token with a reserve balance of 50,000 and daily volume of 10,000?
```

**Response:** 
```
No, the liquidity is not safe. The risk level is HIGH.
```

## Frequently Asked Questions

**How are BUY signals generated?**
A BUY signal is triggered when the current price is at least 5% below the fair value, the curve is at least 10% complete, daily volume exceeds $50,000, volume is rising, and the reserve balance is above $100,000.

**When does the tool suggest a SELL signal?**
The tool suggests a SELL signal if the current price is more than 5% above the fair value or if the curve progress has exceeded 90%.

**What is the purpose of `evaluate_liquidity_safety`?**
The `evaluate_liquidity_safety` tool checks if the current reserve balance and daily volume meet the minimum safety requirements to ensure trades can be executed without excessive risk.
