everything vs TWSEMCPServer
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | TWSEMCPServer by twjackysu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 90 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
TWSEMCPServer · Summary
Comprehensive MCP server for Taiwan stock market data with real-time quotes and financial analysis.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
TWSEMCPServer · Use cases
- Analyze stock trends of specific Taiwan companies
- Track foreign investment patterns in Taiwan markets
- Identify high-dividend stocks and upcoming ex-dividend dates
- Monitor market hotspots and unusual trading volumes
- Screen value stocks with good ESG performance
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingTWSEMCPServer · Install
Installation
Online Usage (Recommended)
{
"twstockmcpserver": {
"transport": "streamable_http",
"url": "https://TW-Stock-MCP-Server.fastmcp.app/mcp"
}
}Docker Usage (stdio, no self-hosting)
{
"twstockmcpserver": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--pull=always",
"-e",
"MCP_STDIO=1",
"ghcr.io/twjackysu/twsemcpserver:latest"
]
}
}Docker Usage (HTTP, self-hosting)
docker run -d -p 8000:8000 -e PORT=8000 ghcr.io/twjackysu/twsemcpserver:latestLocal Installation
git clone https://github.com/twjackysu/TWStockMCPServer.git
cd TWStockMCPServer
uv sync && uv run fastmcp dev server.pyClaude Desktop Configuration
Add to config.json:
{
"mcpServers": {
"twstockmcpserver": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--pull=always",
"-e",
"MCP_STDIO=1",
"ghcr.io/twjackysu/twsemcpserver:latest"
]
}
}
}