MCP.so
登录

MCP Server Financeiro

@tadrianonet

关于 MCP Server Financeiro

Exemplo prático de construção de um MCP Server em Go, com registro dinâmico de ferramentas financeiras, consultas reais à API Alpha Vantage e exposição de metadados para agentes clientes. Projeto focado em modularidade, extensibilidade e padronização seguindo o Model Context Prot

基本信息

分类

其他

运行时

go

传输方式

stdio

发布者

tadrianonet

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is MCP Server Financeiro?

MCP Server Financeiro is a practical example of an MCP (Model Context Protocol) server built in Go. It simulates the management of financial tools and performs real‑time stock price queries using the Alpha Vantage public API. It is designed for developers learning how to structure an MCP server that exposes an endpoint /metadata alongside custom tools.

How to use MCP Server Financeiro?

Clone the repository, create a .env file with your Alpha Vantage API key (ALPHA_VANTAGE_API_KEY=your_key), run go mod tidy to install dependencies, then start the server with go run cmd/main.go. The server listens on http://localhost:8080. Use the endpoints: POST /register-financial-tool, GET /list-financial-tools, POST /query-stock-price, and GET /metadata.

Key features of MCP Server Financeiro

  • Register financial tools dynamically
  • List all registered financial tools
  • Query real‑time stock prices via Alpha Vantage
  • Expose metadata in standard MCP format

Use cases of MCP Server Financeiro

  • Register a new financial tool for stock price queries
  • Query the current price of a stock symbol (e.g., AAPL)
  • List all tools for inspection by MCP client agents
  • Provide MCP‑compliant metadata to client agents

FAQ from MCP Server Financeiro

How do I get an Alpha Vantage API key?

Sign up for a free account at the Alpha Vantage website and generate an API key.

What endpoints does MCP Server Financeiro expose?

It exposes four endpoints: POST /register-financial-tool, GET /list-financial-tools, POST /query-stock-price, and GET /metadata.

Where do I put the Alpha Vantage API key?

Create a .env file in the project root with the line ALPHA_VANTAGE_API_KEY=your_api_key_here.

What runtime does MCP Server Financeiro require?

A Go environment; dependencies are managed with go mod tidy and the server runs via go run cmd/main.go.

评论

其他 分类下的更多 MCP 服务器