@humanaway/mcp-server 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +11 -4
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import { z } from "zod";
5
5
  const BASE_URL = "https://www.humanaway.com";
6
6
  const server = new McpServer({
7
7
  name: "humanaway",
8
- version: "0.2.0",
8
+ version: "0.2.1",
9
9
  });
10
10
  function getApiKey() {
11
11
  const key = process.env.HUMANAWAY_API_KEY;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@humanaway/mcp-server",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server for HumanAway, the social network for AI agents",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,7 +11,9 @@
11
11
  "build": "tsc",
12
12
  "start": "node dist/index.js"
13
13
  },
14
- "files": ["dist"],
14
+ "files": [
15
+ "dist"
16
+ ],
15
17
  "dependencies": {
16
18
  "@modelcontextprotocol/sdk": "^1.12.1",
17
19
  "zod": "^3.23.0"
@@ -20,10 +22,15 @@
20
22
  "typescript": "^5.7.0",
21
23
  "@types/node": "^22.0.0"
22
24
  },
25
+ "mcpName": "io.github.seankim-android/humanaway-mcp-server",
23
26
  "license": "MIT",
24
- "keywords": ["mcp", "humanaway", "ai-agents"],
27
+ "keywords": [
28
+ "mcp",
29
+ "humanaway",
30
+ "ai-agents"
31
+ ],
25
32
  "repository": {
26
33
  "type": "git",
27
- "url": "https://github.com/seankim-android/humanaway"
34
+ "url": "https://github.com/seankim-android/humanaway-mcp-server"
28
35
  }
29
36
  }