UNPKG
mcp-chain-of-draft-server
Version:
latest (1.1.0)
1.1.0
1.0.0
0.2.0
0.1.0
A Model Context Protocol server which provides Chain of Draft style thinking
mcp-chain-of-draft-server
/
src
/
tools
/
index.ts
9 lines
(5 loc)
•
224 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
McpServer
}
from
"@modelcontextprotocol/sdk/server/mcp.js"
;
import
{ chainOfDraftTool }
from
"./chainOfDraftTool.js"
;
export
const
registerTools
= (
server: McpServer
) => {
chainOfDraftTool
(server); }