UNPKG
@simon-archer/designbot-mcp
Version:
latest (0.7.3)
1.1.0
1.0.1
1.0.0
0.9.0
0.8.0
0.7.3
0.7.2
0.7.1
0.7.0
0.6.1
0.6.0
0.5.0-debug
0.4.1
0.4.0
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
A lightweight MCP proxy server for designbot.deno.dev/chat
@simon-archer/designbot-mcp
/
dist
/
server.d.ts
10 lines
(9 loc)
•
294 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
McpServer
}
from
'@modelcontextprotocol/sdk/server/mcp.js'
;
export
interface
McpServerOptions
{
name
?:
string
;
version
?:
string
; }
/** * Start an MCP server with a designbot-chat tool */
export
declare
function
startMcpServer
(
options
?:
McpServerOptions
):
Promise
<
McpServer
>;