├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── chain-of-draft.md ├── package.json ├── src ├── index.ts ├── initialize.ts ├── tools │ ├── chainOfDraftParams.ts │ ├── chainOfDraftTool.ts │ └── index.ts └── utils │ ├── errors.ts │ ├── index.ts │ └── logging.ts └── tsconfig.json /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/README.md -------------------------------------------------------------------------------- /docs/chain-of-draft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/docs/chain-of-draft.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/initialize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/initialize.ts -------------------------------------------------------------------------------- /src/tools/chainOfDraftParams.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/tools/chainOfDraftParams.ts -------------------------------------------------------------------------------- /src/tools/chainOfDraftTool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/tools/chainOfDraftTool.ts -------------------------------------------------------------------------------- /src/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/tools/index.ts -------------------------------------------------------------------------------- /src/utils/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/utils/errors.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/src/utils/logging.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsmi021/mcp-chain-of-draft-server/HEAD/tsconfig.json --------------------------------------------------------------------------------