├── .env.example ├── .gitignore ├── .npmrc ├── Dockerfile ├── README.md ├── RELEASE_NOTES.md ├── __init__.py ├── claude_desktop_config.example.json ├── commit.sh ├── config.json ├── docs ├── CLAUDE.md └── mcp-documentation.md ├── nx.json ├── package.json ├── project.json ├── promptsConfig.json ├── push.sh ├── requirements.txt ├── sea-config.json ├── smithery.yaml ├── src ├── index.ts ├── python │ ├── analytics.py │ ├── client.py │ ├── complexity.py │ ├── examples.py │ ├── format.py │ ├── reasoning.py │ └── server.py ├── server.ts ├── test-query.ts ├── types.ts └── utils │ └── logger.ts ├── system_template.md ├── test.py └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/.npmrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/__init__.py -------------------------------------------------------------------------------- /claude_desktop_config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/claude_desktop_config.example.json -------------------------------------------------------------------------------- /commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/commit.sh -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/config.json -------------------------------------------------------------------------------- /docs/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/docs/CLAUDE.md -------------------------------------------------------------------------------- /docs/mcp-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/docs/mcp-documentation.md -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/package.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/project.json -------------------------------------------------------------------------------- /promptsConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/promptsConfig.json -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | git push -u origin main 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/requirements.txt -------------------------------------------------------------------------------- /sea-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/sea-config.json -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/python/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/analytics.py -------------------------------------------------------------------------------- /src/python/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/client.py -------------------------------------------------------------------------------- /src/python/complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/complexity.py -------------------------------------------------------------------------------- /src/python/examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/examples.py -------------------------------------------------------------------------------- /src/python/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/format.py -------------------------------------------------------------------------------- /src/python/reasoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/reasoning.py -------------------------------------------------------------------------------- /src/python/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/python/server.py -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/test-query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/test-query.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /system_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/system_template.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/test.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brendancopley/mcp-chain-of-draft-prompt-tool/HEAD/tsconfig.json --------------------------------------------------------------------------------