antenna-fyi 1.3.13 → 1.3.14

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/lib/mcp.js +2 -3
  2. package/package.json +1 -1
package/lib/mcp.js CHANGED
@@ -111,7 +111,6 @@ export async function startMcpServer() {
111
111
  sender_id: z.string().describe("The sender's user ID"),
112
112
  channel: z.string().describe("Channel name"),
113
113
  display_name: z.string().optional().describe("Display name"),
114
- emoji: z.string().optional().describe("Profile emoji (stored but not displayed on card)"),
115
114
  line1: z.string().optional().describe("Personal description — who you are and what you do (max 220 chars)"),
116
115
  line2: z.string().optional().describe("Looking for — the kind of people you want to meet (max 140 chars)"),
117
116
  line3: z.string().optional().describe("Conversation style — the type of conversations you want (max 160 chars)"),
@@ -122,7 +121,7 @@ export async function startMcpServer() {
122
121
  is_active: z.boolean().optional().describe("Whether the profile is active or quiet"),
123
122
  visible: z.boolean().optional().default(true),
124
123
  },
125
- async ({ action, sender_id, channel, display_name, emoji, line1, line2, line3, matching_context, interest_tags, city, links, is_active, visible }) => {
124
+ async ({ action, sender_id, channel, display_name, line1, line2, line3, matching_context, interest_tags, city, links, is_active, visible }) => {
126
125
  const deviceId = deriveDeviceId(sender_id, channel);
127
126
  try {
128
127
  if (action === "get") {
@@ -132,7 +131,7 @@ export async function startMcpServer() {
132
131
  : { profile: null, message: "还没有名片。跟用户聊聊他们是谁、做什么、想认识什么人,然后帮他们创建。", fields: PROFILE_FIELDS };
133
132
  return jsonResult(await withMatchNotifications(deviceId, result));
134
133
  }
135
- const data = await setProfile({ device_id: deviceId, display_name, emoji, line1, line2, line3, matching_context, interest_tags, city, links, is_active, visible });
134
+ const data = await setProfile({ device_id: deviceId, display_name, line1, line2, line3, matching_context, interest_tags, city, links, is_active, visible });
136
135
  return jsonResult(await withMatchNotifications(deviceId, { saved: true, profile: data }));
137
136
  } catch (e) {
138
137
  return jsonResult({ error: e.message });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "antenna-fyi",
3
- "version": "1.3.13",
3
+ "version": "1.3.14",
4
4
  "description": "Antenna \u2014 nearby people discovery. CLI + MCP server + OpenClaw skill & plugin, all in one package.",
5
5
  "type": "module",
6
6
  "bin": {