What is the io.github.cybeleri/finance MCP server?
Financial data MCP server: stock quotes, crypto prices, portfolio tracking, market analysis
How to install io.github.cybeleri/finance
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"finance": {
"command": "npx",
"args": [
"-y",
"finance-mcp-server"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"finance": {
"command": "npx",
"args": [
"-y",
"finance-mcp-server"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"finance": {
"command": "npx",
"args": [
"-y",
"finance-mcp-server"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"finance": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"finance-mcp-server"
]
}
}
}Claude Code
claude mcp add finance -- npx -y finance-mcp-serverRelated MCP servers
Database admin MCP: schema inspection, query optimization for PostgreSQL and MySQL
View repository →