Skip to content

Instantly share code, notes, and snippets.

@websofter
Last active September 6, 2025 14:25
Show Gist options
  • Save websofter/17780d065a92181b54b251773a6f3c61 to your computer and use it in GitHub Desktop.
Save websofter/17780d065a92181b54b251773a6f3c61 to your computer and use it in GitHub Desktop.
Example for local mcp file .mcp.json
{
"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