mcp-server-ga4 vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-ga4 by harshfolio | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 35 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 14 mo ago | this month |
mcp-server-ga4 · Summary
An MCP server enabling LLMs to access and analyze Google Analytics 4 data through GA4 Data API.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-server-ga4 · Use cases
- Generate natural language summaries of website traffic and user behavior data from GA4
- Create automated reports by having an LLM query GA4 data based on specific business questions
- Integrate real-time analytics capabilities into AI-powered assistants for immediate insights
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
mcp-server-ga4 · Install
Installation
pip install mcp-server-ga4Authentication
Set up Google Cloud authentication:
gcloud auth application-default loginClaude Desktop Configuration
{
"mcpServers": {
"ga4": {
"command": "mcp-server-ga4",
"args": ["--property-id", "YOUR_GA4_PROPERTY_ID"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.