Skip to content

Commit 7d7d31f

Browse files
authored
Fix financial datasets error logs (#63)
1 parent 342d949 commit 7d7d31f

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

financial-datasets-mcp-server/.actor/pay_per_event.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,52 @@
44
"eventDescription": "Initial fee for starting the MCP Server Actor",
55
"eventPriceUsd": 0.1
66
},
7-
"get-income-statements": {
7+
"get_income_statements": {
88
"eventTitle": "Get income statements",
99
"eventDescription": "Fee for getting income statements for a company.",
1010
"eventPriceUsd": 0.01
1111
},
12-
"get-balance-sheets": {
12+
"get_balance_sheets": {
1313
"eventTitle": "Get balance sheets",
1414
"eventDescription": "Fee for getting balance sheets for a company.",
1515
"eventPriceUsd": 0.01
1616
},
17-
"get-cash-flow-statements": {
17+
"get_cash_flow_statements": {
1818
"eventTitle": "Get cash flow statements",
1919
"eventDescription": "Fee for getting cash flow statements for a company.",
2020
"eventPriceUsd": 0.01
2121
},
22-
"get-current-stock-price": {
22+
"get_current_stock_price": {
2323
"eventTitle": "Get current stock price",
2424
"eventDescription": "Fee for getting the current / latest price of a company.",
2525
"eventPriceUsd": 0.01
2626
},
27-
"get-historical-stock-prices": {
27+
"get_historical_stock_prices": {
2828
"eventTitle": "Get historical stock prices",
2929
"eventDescription": "Fee for getting historical stock prices for a company.",
3030
"eventPriceUsd": 0.01
3131
},
32-
"get-company-news": {
32+
"get_company_news": {
3333
"eventTitle": "Get company news",
3434
"eventDescription": "Fee for getting news for a company.",
3535
"eventPriceUsd": 0.01
3636
},
37-
"get-available-crypto-tickers": {
37+
"get_available_crypto_tickers": {
3838
"eventTitle": "Get available crypto tickers",
3939
"eventDescription": "Fee for getting all available crypto tickers.",
4040
"eventPriceUsd": 0.001
4141
},
42-
"get-crypto-prices": {
42+
"get_crypto_prices": {
4343
"eventTitle": "Get crypto prices",
4444
"eventDescription": "Fee for getting current prices for a crypto currency.",
4545
"eventPriceUsd": 0.01
4646
},
47-
"get-historical-crypto-prices": {
47+
"get_historical_crypto_prices": {
4848
"eventTitle": "Get historical crypto prices",
4949
"eventDescription": "Fee for getting historical prices for a crypto currency.",
5050
"eventPriceUsd": 0.01
5151
},
52-
"get-current-crypto-price": {
52+
"get_current_crypto_price": {
5353
"eventTitle": "Get current crypto price",
5454
"eventDescription": "Fee for getting the current / latest price of a crypto currency.",
5555
"eventPriceUsd": 0.01

financial-datasets-mcp-server/src/const.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class ChargeEvents(str, Enum):
1414

1515
# Generic MCP operations (can be used for any MCP server)
1616
ACTOR_START = 'actor-start'
17+
TOOL_CALL = 'tool-call'
1718

1819
# Financial Datasets-specific operations
1920
GET_INCOME_STATEMENTS = 'get_income_statements'

0 commit comments

Comments
 (0)