@heyclaude/mcp 0.1.1 → 0.1.2
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/CHANGELOG.md +6 -0
- package/README.md +3 -3
- package/package.json +4 -3
- package/src/submissions.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @heyclaude/mcp Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2 - Repository Rename
|
|
4
|
+
|
|
5
|
+
- Update package metadata, README links, and release provenance for the
|
|
6
|
+
`JSONbored/awesome-claude` GitHub repository.
|
|
7
|
+
- Keep published package behavior unchanged.
|
|
8
|
+
|
|
3
9
|
## 0.1.1 - Package Page Polish
|
|
4
10
|
|
|
5
11
|
- Add npm-facing package README branding, repository links, npm links, and
|
package/README.md
CHANGED
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<a href="https://heyclau.de">Website</a> •
|
|
11
|
-
<a href="https://github.com/JSONbored/
|
|
11
|
+
<a href="https://github.com/JSONbored/awesome-claude">GitHub</a> •
|
|
12
12
|
<a href="https://www.npmjs.com/package/@heyclaude/mcp">npm</a> •
|
|
13
13
|
<a href="https://heyclau.de/api/mcp">MCP endpoint</a> •
|
|
14
|
-
<a href="https://github.com/JSONbored/
|
|
14
|
+
<a href="https://github.com/JSONbored/awesome-claude/releases/tag/mcp-v0.1.2">v0.1.2 release</a>
|
|
15
15
|
</p>
|
|
16
16
|
|
|
17
17
|
Read-only Model Context Protocol server for the HeyClaude registry.
|
|
@@ -133,7 +133,7 @@ semver releases. The initial public package version is `0.1.0`, and GitHub
|
|
|
133
133
|
release tags use `mcp-vX.Y.Z`.
|
|
134
134
|
|
|
135
135
|
The npm package artifact is hosted on npmjs.com. GitHub Releases track the
|
|
136
|
-
matching package-scoped source tag and release notes, such as `mcp-v0.1.
|
|
136
|
+
matching package-scoped source tag and release notes, such as `mcp-v0.1.2`.
|
|
137
137
|
|
|
138
138
|
Do not publish until the web branch has shipped, the production endpoint has
|
|
139
139
|
been verified, and the package smoke test passes. The release checklist is:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heyclaude/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Read-only MCP server for the HeyClaude registry.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,14 +9,15 @@
|
|
|
9
9
|
"homepage": "https://heyclau.de",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/JSONbored/
|
|
12
|
+
"url": "git+https://github.com/JSONbored/awesome-claude.git",
|
|
13
13
|
"directory": "packages/mcp"
|
|
14
14
|
},
|
|
15
15
|
"bugs": {
|
|
16
|
-
"url": "https://github.com/JSONbored/
|
|
16
|
+
"url": "https://github.com/JSONbored/awesome-claude/issues"
|
|
17
17
|
},
|
|
18
18
|
"keywords": [
|
|
19
19
|
"heyclaude",
|
|
20
|
+
"awesome-claude",
|
|
20
21
|
"mcp",
|
|
21
22
|
"model-context-protocol",
|
|
22
23
|
"claude",
|
package/src/submissions.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const SUBMISSION_SITE_URL = "https://heyclau.de/submit";
|
|
2
2
|
export const GITHUB_NEW_ISSUE_URL =
|
|
3
|
-
"https://github.com/JSONbored/
|
|
3
|
+
"https://github.com/JSONbored/awesome-claude/issues/new";
|
|
4
4
|
|
|
5
5
|
const defaultLabels = ["content-submission", "needs-review"];
|
|
6
6
|
|