UNPKG
zed.mcp
Version:
latest (1.3.0)
1.3.0
1.2.0
1.1.0
1.0.0
MCP server for project analysis, AI rules reading, and dependency checking
skriken/zed.mcp
zed.mcp
/
index.ts
14 lines
(10 loc)
•
258 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bun
import
{ main }
from
"./src/server"
;
// Only run if this file is executed directly
if
(
import
.
meta
.
main
) {
main
().
catch
(
(
error
) =>
{
console
.
error
(
"Fatal error:"
, error); process.
exit
(
1
); }); }
export
{ main };