hugging-bay-mcp 0.1.0

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.
Files changed (5) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +120 -0
  3. package/index.mjs +1976 -0
  4. package/package.json +40 -0
  5. package/server.json +42 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "hugging-bay-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Model Context Protocol (stdio) server for Hugging Bay — the agent-friendly open AI catalog. Exposes public catalog search, hosted downloads, trust/provenance signals, mirror demand, answer packs, and agent discovery as MCP tools for Claude, Cursor, and other MCP clients.",
5
+ "type": "module",
6
+ "bin": {
7
+ "hugging-bay-mcp": "./index.mjs"
8
+ },
9
+ "mcpName": "io.github.barneywohl/hugging-bay",
10
+ "keywords": [
11
+ "mcp",
12
+ "mcp-server",
13
+ "model-context-protocol",
14
+ "claude",
15
+ "cursor",
16
+ "hugging-bay",
17
+ "ai-catalog",
18
+ "open-source-ai",
19
+ "model-registry"
20
+ ],
21
+ "homepage": "https://huggingbay.xyz",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "https://github.com/barneywohl/hugging-bay.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/barneywohl/hugging-bay/issues"
28
+ },
29
+ "author": "Hugging Bay",
30
+ "license": "MIT",
31
+ "engines": {
32
+ "node": ">=18"
33
+ },
34
+ "files": [
35
+ "index.mjs",
36
+ "server.json",
37
+ "README.md",
38
+ "LICENSE"
39
+ ]
40
+ }
package/server.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
3
+ "name": "io.github.barneywohl/hugging-bay",
4
+ "description": "MCP server for Hugging Bay — the agent-friendly open AI catalog. Public catalog search, hosted downloads, trust/provenance signals, mirror demand, answer packs, and agent discovery, plus authenticated watchlist and publisher tools.",
5
+ "repository": {
6
+ "url": "https://github.com/barneywohl/hugging-bay",
7
+ "source": "github"
8
+ },
9
+ "version": "0.1.0",
10
+ "websiteUrl": "https://huggingbay.xyz",
11
+ "remotes": [
12
+ {
13
+ "type": "streamable-http",
14
+ "url": "https://huggingbay.xyz/api/mcp"
15
+ }
16
+ ],
17
+ "packages": [
18
+ {
19
+ "registryType": "npm",
20
+ "registryBaseUrl": "https://registry.npmjs.org",
21
+ "identifier": "hugging-bay-mcp",
22
+ "version": "0.1.0",
23
+ "transport": {
24
+ "type": "stdio"
25
+ },
26
+ "environmentVariables": [
27
+ {
28
+ "name": "HUGGING_BAY_API",
29
+ "description": "Hugging Bay API base URL. Defaults to https://huggingbay.xyz.",
30
+ "isRequired": false,
31
+ "default": "https://huggingbay.xyz"
32
+ },
33
+ {
34
+ "name": "HUGGING_BAY_TOKEN",
35
+ "description": "Optional bearer token (hb_...) enabling authenticated watchlist and publisher tools. Public read-only tools work without it.",
36
+ "isRequired": false,
37
+ "isSecret": true
38
+ }
39
+ ]
40
+ }
41
+ ]
42
+ }