{
	"servers": {
		"twitter-mcp": {
			"command": "npx",
			"args": [
				"-y",
				"@enescinar/twitter-mcp"
			],
			"env": {
				"API_KEY": "your_api_key_here",
				"API_SECRET_KEY": "your_api_secret_key_here",
				"ACCESS_TOKEN": "your_access_token_here",
				"ACCESS_TOKEN_SECRET": "your_access_token_secret_here"
			}
		},
		"filesystem": {
			"command": "npx",
			"args": [
				"-y",
				"@modelcontextprotocol/server-filesystem",
				"C:\\Users\\[ユーザ名]\\Desktop\\mcp-data"
			],
			"type": "stdio"
		},
		"google-maps": {
			"command": "npx",
			"args": [
				"-y",
				"@modelcontextprotocol/server-google-maps"
			],
			"env": {
				"GOOGLE_MAPS_API_KEY": "${input:maps_api_key}"
			},
			"type": "stdio"
		}
	},
	"inputs": [
		{
			"type": "promptString",
			"id": "maps_api_key",
			"description": "Google Maps API Key",
			"password": true
		}
	]
}