├── .env.example ├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── infrastructure ├── docker │ ├── nginx.conf │ ├── node │ │ ├── nginx_proxy │ │ │ └── Dockerfile │ │ ├── ngrok_tunnel │ │ │ └── Dockerfile │ │ ├── pinggy_tunnel │ │ │ └── Dockerfile │ │ └── startup.sh │ └── python │ │ ├── nginx_proxy │ │ └── Dockerfile │ │ ├── pinggy_tunnel │ │ └── Dockerfile │ │ └── startup.sh ├── docs │ ├── ai-agent-building.md │ ├── dokku │ │ └── provision_mcp_on_dokku.md │ ├── examples │ │ └── deploy_mcps_remotely_with_claude_code.md │ ├── how-to-expose-localhost-mcps-to-the-internet.md │ ├── how-to-run-mcp-servers-securely.md │ ├── how-to-run-stdio-mcps-remotely.md │ ├── images │ │ ├── Secured_MCP_via_Nginx_Proxy_Mermaid_Chart-2025-08-10-043951.png │ │ ├── Secured_MCP_via_Tunnel_Proxy_Mermaid_Chart-2025-08-10-043849.png │ │ ├── default_nginx_landing_page.png │ │ ├── mcp_manager_authorization.png │ │ └── mcp_manager_inbound_server_setup.png │ ├── improving-tool-selection.md │ ├── logging-auditing-observability.md │ ├── mcp-identity-management-checklist.md │ ├── mcp-security-threat-list.md │ ├── reported-vulnerability-index.md │ ├── security-screening-mcp-servers.md │ ├── shadow-mcp-detect-prevent.md │ └── troubleshooting-oauth.md ├── dokku │ ├── nginx.conf │ ├── node │ │ ├── markdownify_on_dokku │ │ │ └── Dockerfile │ │ ├── mcp_remote_on_dokku │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ ├── nginx_proxy_on_dokku │ │ │ └── Dockerfile │ │ ├── playwright_on_dokku │ │ │ ├── Dockerfile │ │ │ └── startup.sh │ │ └── puppeteer_on_dokku__not_working │ │ │ ├── Dockerfile │ │ │ └── setup_virtual_display_then_run.sh │ └── python │ │ ├── neo4j_aura_on_dokku │ │ ├── Dockerfile │ │ └── startup.sh │ │ ├── neo4j_on_dokku │ │ ├── Dockerfile │ │ └── startup.sh │ │ ├── nginx_proxy_on_dokku │ │ └── Dockerfile │ │ └── zenmcp_on_dokku │ │ ├── Dockerfile │ │ └── startup.sh └── package_scripts │ ├── build.mjs │ ├── build_cli.mjs │ ├── cli.mjs │ ├── create.mjs │ ├── deploy.mjs │ ├── dotenv │ ├── argon2.umd.min.js │ ├── read_line.mjs │ └── read_multiple_choice.mjs │ ├── gen_key.mjs │ ├── ssh.mjs │ ├── start.mjs │ ├── stop.mjs │ └── utilities │ ├── dokku_deploy.mjs │ ├── get_files_in_directory.mjs │ ├── jsdoc_utils.mjs │ ├── load_package_json.mjs │ ├── parse_args_with_help.mjs │ ├── performance_utils.mjs │ ├── print_table.mjs │ ├── read_line.mjs │ ├── read_multiple_choice.mjs │ └── spawn_promise.mjs ├── mcp-security-threat-list.md ├── package.json ├── pnpm-lock.yaml └── pnpm-workspace.yaml /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | *.png binary -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/README.md -------------------------------------------------------------------------------- /infrastructure/docker/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/nginx.conf -------------------------------------------------------------------------------- /infrastructure/docker/node/nginx_proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/node/nginx_proxy/Dockerfile -------------------------------------------------------------------------------- /infrastructure/docker/node/ngrok_tunnel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/node/ngrok_tunnel/Dockerfile -------------------------------------------------------------------------------- /infrastructure/docker/node/pinggy_tunnel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/node/pinggy_tunnel/Dockerfile -------------------------------------------------------------------------------- /infrastructure/docker/node/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/node/startup.sh -------------------------------------------------------------------------------- /infrastructure/docker/python/nginx_proxy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/python/nginx_proxy/Dockerfile -------------------------------------------------------------------------------- /infrastructure/docker/python/pinggy_tunnel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/python/pinggy_tunnel/Dockerfile -------------------------------------------------------------------------------- /infrastructure/docker/python/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docker/python/startup.sh -------------------------------------------------------------------------------- /infrastructure/docs/ai-agent-building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/ai-agent-building.md -------------------------------------------------------------------------------- /infrastructure/docs/dokku/provision_mcp_on_dokku.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/dokku/provision_mcp_on_dokku.md -------------------------------------------------------------------------------- /infrastructure/docs/examples/deploy_mcps_remotely_with_claude_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/examples/deploy_mcps_remotely_with_claude_code.md -------------------------------------------------------------------------------- /infrastructure/docs/how-to-expose-localhost-mcps-to-the-internet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/how-to-expose-localhost-mcps-to-the-internet.md -------------------------------------------------------------------------------- /infrastructure/docs/how-to-run-mcp-servers-securely.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/how-to-run-mcp-servers-securely.md -------------------------------------------------------------------------------- /infrastructure/docs/how-to-run-stdio-mcps-remotely.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/how-to-run-stdio-mcps-remotely.md -------------------------------------------------------------------------------- /infrastructure/docs/images/Secured_MCP_via_Nginx_Proxy_Mermaid_Chart-2025-08-10-043951.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/images/Secured_MCP_via_Nginx_Proxy_Mermaid_Chart-2025-08-10-043951.png -------------------------------------------------------------------------------- /infrastructure/docs/images/Secured_MCP_via_Tunnel_Proxy_Mermaid_Chart-2025-08-10-043849.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/images/Secured_MCP_via_Tunnel_Proxy_Mermaid_Chart-2025-08-10-043849.png -------------------------------------------------------------------------------- /infrastructure/docs/images/default_nginx_landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/images/default_nginx_landing_page.png -------------------------------------------------------------------------------- /infrastructure/docs/images/mcp_manager_authorization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/images/mcp_manager_authorization.png -------------------------------------------------------------------------------- /infrastructure/docs/images/mcp_manager_inbound_server_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/images/mcp_manager_inbound_server_setup.png -------------------------------------------------------------------------------- /infrastructure/docs/improving-tool-selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/improving-tool-selection.md -------------------------------------------------------------------------------- /infrastructure/docs/logging-auditing-observability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/logging-auditing-observability.md -------------------------------------------------------------------------------- /infrastructure/docs/mcp-identity-management-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/mcp-identity-management-checklist.md -------------------------------------------------------------------------------- /infrastructure/docs/mcp-security-threat-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/mcp-security-threat-list.md -------------------------------------------------------------------------------- /infrastructure/docs/reported-vulnerability-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/reported-vulnerability-index.md -------------------------------------------------------------------------------- /infrastructure/docs/security-screening-mcp-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/security-screening-mcp-servers.md -------------------------------------------------------------------------------- /infrastructure/docs/shadow-mcp-detect-prevent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/shadow-mcp-detect-prevent.md -------------------------------------------------------------------------------- /infrastructure/docs/troubleshooting-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/docs/troubleshooting-oauth.md -------------------------------------------------------------------------------- /infrastructure/dokku/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/nginx.conf -------------------------------------------------------------------------------- /infrastructure/dokku/node/markdownify_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/markdownify_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/node/mcp_remote_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/mcp_remote_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/node/mcp_remote_on_dokku/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/mcp_remote_on_dokku/startup.sh -------------------------------------------------------------------------------- /infrastructure/dokku/node/nginx_proxy_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/nginx_proxy_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/node/playwright_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/playwright_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/node/playwright_on_dokku/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/playwright_on_dokku/startup.sh -------------------------------------------------------------------------------- /infrastructure/dokku/node/puppeteer_on_dokku__not_working/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/puppeteer_on_dokku__not_working/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/node/puppeteer_on_dokku__not_working/setup_virtual_display_then_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/node/puppeteer_on_dokku__not_working/setup_virtual_display_then_run.sh -------------------------------------------------------------------------------- /infrastructure/dokku/python/neo4j_aura_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/neo4j_aura_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/python/neo4j_aura_on_dokku/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/neo4j_aura_on_dokku/startup.sh -------------------------------------------------------------------------------- /infrastructure/dokku/python/neo4j_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/neo4j_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/python/neo4j_on_dokku/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/neo4j_on_dokku/startup.sh -------------------------------------------------------------------------------- /infrastructure/dokku/python/nginx_proxy_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/nginx_proxy_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/python/zenmcp_on_dokku/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/zenmcp_on_dokku/Dockerfile -------------------------------------------------------------------------------- /infrastructure/dokku/python/zenmcp_on_dokku/startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/dokku/python/zenmcp_on_dokku/startup.sh -------------------------------------------------------------------------------- /infrastructure/package_scripts/build.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/build.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/build_cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/build_cli.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/cli.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/create.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/create.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/deploy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/deploy.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/dotenv/argon2.umd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/dotenv/argon2.umd.min.js -------------------------------------------------------------------------------- /infrastructure/package_scripts/dotenv/read_line.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/dotenv/read_line.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/dotenv/read_multiple_choice.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/dotenv/read_multiple_choice.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/gen_key.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/gen_key.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/ssh.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/ssh.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/start.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/start.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/stop.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/stop.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/dokku_deploy.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/dokku_deploy.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/get_files_in_directory.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/get_files_in_directory.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/jsdoc_utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/jsdoc_utils.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/load_package_json.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/load_package_json.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/parse_args_with_help.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/parse_args_with_help.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/performance_utils.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/performance_utils.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/print_table.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/print_table.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/read_line.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/read_line.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/read_multiple_choice.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/read_multiple_choice.mjs -------------------------------------------------------------------------------- /infrastructure/package_scripts/utilities/spawn_promise.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/infrastructure/package_scripts/utilities/spawn_promise.mjs -------------------------------------------------------------------------------- /mcp-security-threat-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/mcp-security-threat-list.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCP-Manager/MCP-Checklists/HEAD/pnpm-workspace.yaml --------------------------------------------------------------------------------