mcp-yfinance vs memory
Side-by-side comparison to help you pick between these two MCP servers.
mcp-yfinance by 9nate-drake | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 34 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM Tools | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 18 mo ago | this month |
mcp-yfinance · Summary
MCP server providing Yahoo Finance data through yfinance API to Claude Desktop.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
mcp-yfinance · Use cases
- Get current stock prices and market data for various companies
- Analyze historical stock performance over custom time periods
- Retrieve institutional ownership and analyst price target information
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
mcp-yfinance · Install
Installation
Requirements
- Python 3.10 or higher
- Claude Desktop
Install Steps
- Clone this repo:
git clone https://github.com/9nate-drake/mcp-yfinance- Install required packages:
pip install mcp yfinanceConfiguration
Add to your Claude Desktop config file claude_desktop_config.json:
{
"mcpServers": {
"yfinance": {
"command": "python",
"args": [
"/path/to/finance_server/server.py"
]
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}