chore(cleanup): Зафиксированы удаление TradingTools.cs, обновление README и добавление логотипа. Соответствует принципам AGENTS.md.

This commit is contained in:
2026-04-12 23:42:48 +03:00
parent ca20a4e7d4
commit 9b9adc3efa
3 changed files with 39 additions and 46 deletions

View File

@@ -1,20 +0,0 @@
using ModelContextProtocol.Server;
using System.ComponentModel;
namespace LazyBear.MCP.Services;
[McpServerToolType]
public static class TradingTools
{
[McpServerTool, Description("Получить текущую цену актива")]
public static string GetCurrentPrice([Description("Тикер актива, например BTCUSD")] string ticker)
{
return $"Цена {ticker}: 50000 USD (фейковые данные)";
}
[McpServerTool, Description("Получить информацию о позиции")]
public static string GetPositionInfo([Description("ID позиции")] string positionId)
{
return $"Позиция {positionId}: Long BTC, PnL: +500 USD";
}
}