@cyanheads/courtlistener-mcp-server 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +1 -1
- package/README.md +3 -1
- package/changelog/0.1.x/0.1.3.md +21 -0
- package/package.json +30 -17
- package/server.json +3 -3
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** courtlistener-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.3
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.9`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/README.md
CHANGED
|
@@ -7,12 +7,14 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/courtlistener-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/courtlistener-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
14
14
|
<div align="center">
|
|
15
15
|
|
|
16
|
+
[](https://github.com/cyanheads/courtlistener-mcp-server/releases/latest/download/courtlistener-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=courtlistener-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvY291cnRsaXN0ZW5lci1tY3Atc2VydmVyIl19) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22courtlistener-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fcourtlistener-mcp-server%22%5D%7D)
|
|
17
|
+
|
|
16
18
|
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
17
19
|
|
|
18
20
|
</div>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Package metadata, install badges, and scripts migrated to bun run"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.3 — 2026-05-26
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **`.github/FUNDING.yml`** — GitHub Sponsors and Buy Me a Coffee funding config (`github: cyanheads`, `buy_me_a_coffee: cyanheads`)
|
|
12
|
+
- **Install badges** in README — Claude Desktop (`.mcpb` download), Cursor (deeplink), VS Code (deeplink)
|
|
13
|
+
- **Docker badge** and **npm badge** in README header row
|
|
14
|
+
|
|
15
|
+
## Changed
|
|
16
|
+
|
|
17
|
+
- **`package.json` scripts** — migrated from `tsx` to `bun run`; `start:stdio` and `start:http` now use `bun ./dist/index.js`; `bundle` uses `bun run build`; removed bare `start` alias
|
|
18
|
+
- **`package.json` metadata** — added `author`, `funding`, `bugs`, and `homepage` fields matching ecosystem standard
|
|
19
|
+
- **`tsx`** removed from devDependencies (unused since scripts run via bun)
|
|
20
|
+
|
|
21
|
+
59 tests pass; `bun run devcheck` clean.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/courtlistener-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"mcpName": "io.github.cyanheads/courtlistener-mcp-server",
|
|
5
5
|
"description": "Search and retrieve US court opinions, federal dockets, judge records, citation networks, and oral arguments from CourtListener's 9M+ opinion corpus via MCP. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
@@ -19,23 +19,22 @@
|
|
|
19
19
|
"server.json"
|
|
20
20
|
],
|
|
21
21
|
"scripts": {
|
|
22
|
-
"build": "
|
|
23
|
-
"rebuild": "
|
|
24
|
-
"clean": "
|
|
25
|
-
"devcheck": "
|
|
22
|
+
"build": "bun run scripts/build.ts",
|
|
23
|
+
"rebuild": "bun run scripts/clean.ts && bun run build",
|
|
24
|
+
"clean": "bun run scripts/clean.ts",
|
|
25
|
+
"devcheck": "bun run scripts/devcheck.ts",
|
|
26
26
|
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
|
|
27
|
-
"tree": "
|
|
28
|
-
"list-skills": "
|
|
27
|
+
"tree": "bun run scripts/tree.ts",
|
|
28
|
+
"list-skills": "bun run scripts/list-skills.ts",
|
|
29
29
|
"format": "biome check --write --unsafe .",
|
|
30
|
-
"lint:mcp": "
|
|
31
|
-
"lint:packaging": "
|
|
32
|
-
"bundle": "
|
|
33
|
-
"changelog:build": "
|
|
34
|
-
"changelog:check": "
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"start": "
|
|
37
|
-
"start:
|
|
38
|
-
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js",
|
|
30
|
+
"lint:mcp": "bun run scripts/lint-mcp.ts",
|
|
31
|
+
"lint:packaging": "bun run scripts/lint-packaging.ts",
|
|
32
|
+
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/courtlistener-mcp-server.mcpb",
|
|
33
|
+
"changelog:build": "bun run scripts/build-changelog.ts",
|
|
34
|
+
"changelog:check": "bun run scripts/build-changelog.ts --check",
|
|
35
|
+
"test": "bunx vitest run",
|
|
36
|
+
"start:stdio": "MCP_TRANSPORT_TYPE=stdio bun ./dist/index.js",
|
|
37
|
+
"start:http": "MCP_TRANSPORT_TYPE=http bun ./dist/index.js",
|
|
39
38
|
"publish-mcp": "mcp-publisher login github -token \"$(security find-generic-password -a \"$USER\" -s mcp-publisher-github-pat -w)\" && mcp-publisher publish"
|
|
40
39
|
},
|
|
41
40
|
"keywords": [
|
|
@@ -57,6 +56,21 @@
|
|
|
57
56
|
"type": "git",
|
|
58
57
|
"url": "git+https://github.com/cyanheads/courtlistener-mcp-server.git"
|
|
59
58
|
},
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/cyanheads/courtlistener-mcp-server/issues"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://github.com/cyanheads/courtlistener-mcp-server#readme",
|
|
63
|
+
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/courtlistener-mcp-server#readme)",
|
|
64
|
+
"funding": [
|
|
65
|
+
{
|
|
66
|
+
"type": "github",
|
|
67
|
+
"url": "https://github.com/sponsors/cyanheads"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"type": "buy_me_a_coffee",
|
|
71
|
+
"url": "https://www.buymeacoffee.com/cyanheads"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
60
74
|
"license": "Apache-2.0",
|
|
61
75
|
"engines": {
|
|
62
76
|
"bun": ">=1.3.0",
|
|
@@ -76,7 +90,6 @@
|
|
|
76
90
|
"depcheck": "^1.4.7",
|
|
77
91
|
"ignore": "^7.0.5",
|
|
78
92
|
"tsc-alias": "^1.8.17",
|
|
79
|
-
"tsx": "^4.22.3",
|
|
80
93
|
"typescript": "^6.0.3",
|
|
81
94
|
"vitest": "^4.1.7"
|
|
82
95
|
}
|
package/server.json
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/courtlistener-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.3",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "@cyanheads/courtlistener-mcp-server",
|
|
15
15
|
"runtimeHint": "node",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.3",
|
|
17
17
|
"packageArguments": [
|
|
18
18
|
{
|
|
19
19
|
"type": "positional",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
43
|
"identifier": "@cyanheads/courtlistener-mcp-server",
|
|
44
44
|
"runtimeHint": "node",
|
|
45
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.3",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{
|
|
48
48
|
"type": "positional",
|