UNPKG
@gviper/alphavantage-mcp
Version:
latest (1.0.2)
1.0.2
1.0.0
MCP (Model Context Protocol) server for Alpha Vantage financial data API
@gviper/alphavantage-mcp
/
src
/
index.ts
15 lines
(12 loc)
•
307 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env node
import
{
AlphaVantageMCPServer
}
from
'./server.js'
;
async
function
main
(
) {
try
{
const
server =
new
AlphaVantageMCPServer
();
await
server.
start
(); }
catch
(error) {
console
.
error
(
'Failed to start Alpha Vantage MCP Server:'
, error); process.
exit
(
1
); } }
main
();