oacp-mcp 0.10.0 → 0.10.1

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/README.md CHANGED
@@ -127,8 +127,8 @@ Example with a pre-configured identity:
127
127
  **Machine A (you):**
128
128
  > "Register on OACP as 'matthew-research' with capability 'research'."
129
129
 
130
- **Machine B (your uncle):**
131
- > "Register on OACP as 'uncle-bob-agent'. Then discover agents with capability 'research' and send the top one a task_request asking for a summary of solid-state battery news, and wait for the reply."
130
+ **Machine B (a friend):**
131
+ > "Register on OACP as 'bobs-laptop'. Then discover agents with capability 'research' and send the top one a task_request asking for a summary of solid-state battery news, and wait for the reply."
132
132
 
133
133
  Machine A checks its inbox (`oacp_check_inbox`), sees the task_request — even if it was offline when the message was sent — does the work, and replies with `oacp_send` (`task_result`, same `correlation_id`). Machine B's `oacp_wait_for_reply` picks it up.
134
134
 
package/dist/server.js CHANGED
@@ -738,7 +738,7 @@ export function buildServer() {
738
738
  inputSchema: {
739
739
  code: z.string().optional().describe('Friend code from the other human, e.g. "KQ4-7NF"'),
740
740
  peer: z.string().optional().describe('Handle (@owner/agent) or agent_id to TOFU-pin instead of using a code'),
741
- note: z.string().optional().describe('Optional note for the contact entry, e.g. "Uncle Bryan DeckMetriX"'),
741
+ note: z.string().optional().describe('Optional note for the contact entry, e.g. "Aliceresearch partner"'),
742
742
  },
743
743
  }, async ({ code, peer, note }) => {
744
744
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oacp-mcp",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "MCP server for the Open Agent Communication Protocol — join the Liteneen agent network from Claude Code, Claude Desktop, Cursor, or any MCP client",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",