Last active
September 6, 2025 14:25
-
-
Save websofter/17780d065a92181b54b251773a6f3c61 to your computer and use it in GitHub Desktop.
Example for local mcp file .mcp.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "mcpServers": { | |
| "context7": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@upstash/context7-mcp@latest", | |
| "--api-key", | |
| "YOUR_API_KEY" | |
| ] | |
| }, | |
| "docs": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@modelcontextprotocol/server-filesystem", | |
| "/home/websofter/Desktop/office/work/ai-files/docs" | |
| ] | |
| }, | |
| "playwright": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@playwright/mcp@latest" | |
| ] | |
| }, | |
| "sequential-thinking": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@modelcontextprotocol/server-sequential-thinking" | |
| ] | |
| }, | |
| "taskmaster-ai": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "--package=task-master-ai", | |
| "task-master-ai" | |
| ] | |
| }, | |
| "firecrawl-mcp": { | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "firecrawl-mcp" | |
| ], | |
| "env": { | |
| "FIRECRAWL_API_KEY": "YOUR_API_KEY" | |
| } | |
| }, | |
| "memory": { | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@modelcontextprotocol/server-memory" | |
| ], | |
| "env": { | |
| "MEMORY_FILE_PATH": "/.memory.json" | |
| } | |
| }, | |
| "mcp-deepwiki": { | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "mcp-deepwiki@latest" | |
| ] | |
| }, | |
| "mariadb": { | |
| "command": "npx", | |
| "args": [ | |
| "mariadb-mcp-server" | |
| ], | |
| "env": { | |
| "MARIADB_HOST": "localhost", | |
| "MARIADB_PORT": "3306", | |
| "MARIADB_USER": "yetiforce", | |
| "MARIADB_PASSWORD": "yetiforce_crm", | |
| "MARIADB_DATABASE": "yetiforce_crm", | |
| "MARIADB_ALLOW_INSERT": "false", | |
| "MARIADB_ALLOW_UPDATE": "false", | |
| "MARIADB_ALLOW_DELETE": "false", | |
| "MARIADB_TIMEOUT_MS": "10000", | |
| "MARIADB_ROW_LIMIT": "1000" | |
| }, | |
| "disabled": false, | |
| "autoApprove": [] | |
| }, | |
| "postgresql": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "@executeautomation/database-server", | |
| "--postgresql", | |
| "--host", | |
| "localhost", | |
| "--database", | |
| "qslot", | |
| "--user", | |
| "qslot", | |
| "--password", | |
| "secret" | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment