MCP Configpython
Video_chunking MCP Config
MCP configuration with 8 servers: context7, filesystem, git + 5 more
.mcp.json
{
"mcpServers": {
"context7": {
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp@latest"
],
"env": {
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
}
},
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"F:\\Repos\\VideoChunking"
]
},
"git": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-git",
"--repository",
"F:\\Repos\\VideoChunking"
]
},
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
},
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
]
},
"videochunking-dev": {
"command": "python",
"args": [
"F:\\Repos\\VideoChunking\\mcp_server.py"
]
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
]
},
"time": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-time"
]
}
}
}