-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathMakefile
More file actions
49 lines (40 loc) · 1.1 KB
/
Makefile
File metadata and controls
49 lines (40 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
build:
bun scripts/cat-dirs.ts
# Install the dependencies needed to run `indexing-lists.ts`
pnpm install --no-frozen-lockfile
bun scripts/indexing-lists.ts
bun scripts/check-config.ts
# Install dependencies based on the updated `package.json`
pnpm install --no-frozen-lockfile
npx tsx scripts/test-mcp-clients.ts
pnpm install --no-frozen-lockfile
pnpm prune
bun scripts/readme-gen.ts
pnpm run sort
pnpm run check
pnpm run build
build-py:
bun scripts/py-deps-lists.ts
./install-python-deps.sh
bun scripts/py-test-mcp-clients.ts
# Docker commands - for quick deployment
up:
docker compose up -d
down:
docker compose down
restart:
docker compose restart
# Local development commands
search:
docker compose up meilisearch -d --wait --wait-timeout 60
dev:
pnpm run dev
fetch-official-mcp:
bun scripts/official-registry/index.ts
# Validate a single MCP Server JSON file
# Usage: make validate packages/aggregators/1mcp-agent.json
validate:
bun scripts/validate-package.ts $(wordlist 2,$(words $(MAKECMDGOALS)),$(MAKECMDGOALS))
# Swallow positional args so make doesn't treat them as targets
%:
@: