Projeto de teste MCP
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-transaction-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Projeto de teste MCP
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
A Model Context Protocol server for building an investor agent
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP server that provides LLMs with tools for interacting with EVM networks
A Model Context Protocol (MCP) server that provides AI assistants with direct access to the Spreedly payments API. Enables LLMs to manage gateways, process transactions, tokenize payment methods, and more, through structured, validated tool calls.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Transaction Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Projeto .NET 8 com servidor MCP (Model Context Protocol) que expõe a tool get_transaction_details e uma API mock de transações para testes com LLM.
Compatível com VS Code / GitHub Copilot e Claude Code.
http://localhost:5274 com GET /api/transactions/{id}get_transaction_details(transactionId)cd mcp-transaction-server
dotnet run --project src/TransactionMockApi
A API fica em http://localhost:5274. IDs de exemplo: tx-001, tx-002, tx-003, tx-004, tx-005.
cd mcp-transaction-server
dotnet run --project src/TransactionMcpServer
Por padrão o MCP usa http://localhost:5273 como base da API. Para usar a porta correta (5274):
PowerShell:
$env:TRANSACTION_API_BASE_URL="http://localhost:5274"
dotnet run --project src/TransactionMcpServer
CMD:
set TRANSACTION_API_BASE_URL=http://localhost:5274
dotnet run --project src/TransactionMcpServer
O arquivo .mcp.json na raiz do workspace já está configurado para o VS Code. Basta abrir a pasta mcp-transaction-server como workspace e o Copilot detectará o servidor MCP automaticamente.
Adicione o servidor ao arquivo de configuração do Claude Code (~/.claude.json ou .claude.json na raiz do projeto):
{
"mcpServers": {
"TransactionMcpServer": {
"command": "dotnet",
"args": ["run", "--project", "src/TransactionMcpServer"],
"env": {
"TRANSACTION_API_BASE_URL": "http://localhost:5274"
}
}
}
}
Ou use o comando:
claude mcp add TransactionMcpServer dotnet run --project src/TransactionMcpServer
Com a Mock API e o MCP em execução:
dotnet restore
dotnet build