@heyclaude/mcp 0.1.0 → 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 +12 -0
- package/README.md +17 -0
- package/package.json +4 -3
- package/src/submissions.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
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
|
+
|
|
9
|
+
## 0.1.1 - Package Page Polish
|
|
10
|
+
|
|
11
|
+
- Add npm-facing package README branding, repository links, npm links, and
|
|
12
|
+
release provenance notes.
|
|
13
|
+
- Keep published package behavior unchanged.
|
|
14
|
+
|
|
3
15
|
## 0.1.0 - Initial Public Package
|
|
4
16
|
|
|
5
17
|
- Add remote-first stdio bridge for the public HeyClaude MCP endpoint.
|
package/README.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# HeyClaude MCP Server
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<a href="https://heyclau.de">
|
|
5
|
+
<img src="https://heyclau.de/heyclaude-wordmark.svg" alt="HeyClaude" width="300">
|
|
6
|
+
</a>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://heyclau.de">Website</a> •
|
|
11
|
+
<a href="https://github.com/JSONbored/awesome-claude">GitHub</a> •
|
|
12
|
+
<a href="https://www.npmjs.com/package/@heyclaude/mcp">npm</a> •
|
|
13
|
+
<a href="https://heyclau.de/api/mcp">MCP endpoint</a> •
|
|
14
|
+
<a href="https://github.com/JSONbored/awesome-claude/releases/tag/mcp-v0.1.2">v0.1.2 release</a>
|
|
15
|
+
</p>
|
|
16
|
+
|
|
3
17
|
Read-only Model Context Protocol server for the HeyClaude registry.
|
|
4
18
|
|
|
5
19
|
It exposes the same public registry surface used by the website and Raycast:
|
|
@@ -118,6 +132,9 @@ MCP releases are package-scoped. Website/catalog changes do not create repo-wide
|
|
|
118
132
|
semver releases. The initial public package version is `0.1.0`, and GitHub
|
|
119
133
|
release tags use `mcp-vX.Y.Z`.
|
|
120
134
|
|
|
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.2`.
|
|
137
|
+
|
|
121
138
|
Do not publish until the web branch has shipped, the production endpoint has
|
|
122
139
|
been verified, and the package smoke test passes. The release checklist is:
|
|
123
140
|
|
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
|
|