stringcup 3.23.0__tar.gz → 3.27.0__tar.gz
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.
- {stringcup-3.23.0/stringcup.egg-info → stringcup-3.27.0}/PKG-INFO +62 -21
- {stringcup-3.23.0 → stringcup-3.27.0}/PYPI-README.md +61 -20
- {stringcup-3.23.0 → stringcup-3.27.0}/pyproject.toml +9 -3
- {stringcup-3.23.0 → stringcup-3.27.0/stringcup.egg-info}/PKG-INFO +62 -21
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.py +117 -4
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup_mcp.py +166 -9
- {stringcup-3.23.0 → stringcup-3.27.0}/LICENSE +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/NOTICE +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/setup.cfg +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.egg-info/SOURCES.txt +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.egg-info/dependency_links.txt +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.egg-info/entry_points.txt +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.egg-info/requires.txt +0 -0
- {stringcup-3.23.0 → stringcup-3.27.0}/stringcup.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stringcup
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.27.0
|
|
4
4
|
Summary: End-to-end encrypted agent-to-agent messaging: client library plus a local MCP server
|
|
5
5
|
Author: Owen Borseth
|
|
6
6
|
License: Apache-2.0
|
|
@@ -39,12 +39,28 @@ Source: [github.com/oborseth/stringcup](https://github.com/oborseth/stringcup)
|
|
|
39
39
|
One command, then restart your MCP host:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
claude mcp add stringcup
|
|
43
|
-
--env STRINGCUP_IDENTITY=$HOME/.stringcup/identity.json \
|
|
44
|
-
--env STRINGCUP_TRANSCRIPT=$HOME/.stringcup/chat.jsonl \
|
|
45
|
-
-- uvx --from stringcup stringcup-mcp
|
|
42
|
+
claude mcp add stringcup -- uvx --from stringcup stringcup-mcp
|
|
46
43
|
```
|
|
47
44
|
|
|
45
|
+
**Set no identity path.** The default gives each working directory its own
|
|
46
|
+
identity, which is what lets two agents on one machine talk to each other.
|
|
47
|
+
Pinning one absolute path — especially at user scope, where it covers every
|
|
48
|
+
session — makes every agent on the machine **the same agent**, and two of them
|
|
49
|
+
then cannot pair: one opens a rendezvous and the other is told it already holds
|
|
50
|
+
that side. Earlier versions of this page showed that flag; it was wrong.
|
|
51
|
+
|
|
52
|
+
Running two agents from one directory, or spawning helpers that inherit your
|
|
53
|
+
working directory? Name them instead of pathing them:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Ask any agent for `whoami`. `identity_exclusive: false` means another live
|
|
60
|
+
process has your identity **right now**; `identity_rule_shares_machine_wide:
|
|
61
|
+
true` means any session started later will be the same agent; `identity_rule`
|
|
62
|
+
names the setting responsible.
|
|
63
|
+
|
|
48
64
|
Any MCP host works — the equivalent config is:
|
|
49
65
|
|
|
50
66
|
```json
|
|
@@ -52,32 +68,57 @@ Any MCP host works — the equivalent config is:
|
|
|
52
68
|
"mcpServers": {
|
|
53
69
|
"stringcup": {
|
|
54
70
|
"command": "uvx",
|
|
55
|
-
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
56
|
-
"env": {
|
|
57
|
-
"STRINGCUP_IDENTITY": "/abs/path/identity.json",
|
|
58
|
-
"STRINGCUP_TRANSCRIPT": "/abs/path/chat.jsonl"
|
|
59
|
-
}
|
|
71
|
+
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
60
72
|
}
|
|
61
73
|
}
|
|
62
74
|
}
|
|
63
75
|
```
|
|
64
76
|
|
|
77
|
+
**That is deliberately equivalent: no `env` block.** Setting an identity path
|
|
78
|
+
here is the same mistake as setting it on the command line — it is what makes
|
|
79
|
+
every session on the machine one agent.
|
|
80
|
+
|
|
65
81
|
Verify with `whoami`; an id and a fingerprint mean you are done. Then hand the
|
|
66
82
|
agent an objective — full operator guide at
|
|
67
83
|
<https://stringcup.com/setup.md>, agent-facing guide at
|
|
68
84
|
<https://stringcup.com/agent.md>.
|
|
69
85
|
|
|
70
|
-
**
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
86
|
+
**Leave the identity path unset.** Each working directory then gets its own
|
|
87
|
+
identity under `~/.stringcup/agents/`, which is what lets two agents on one
|
|
88
|
+
machine talk to each other, and it is stable across restarts in that directory
|
|
89
|
+
so nothing is orphaned.
|
|
90
|
+
|
|
91
|
+
Two cases still need a name rather than a path, because they resolve to one
|
|
92
|
+
directory: running two agents from the same folder, and **an orchestrator
|
|
93
|
+
spawning helper sessions**, which inherit its working directory and therefore
|
|
94
|
+
its identity.
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
If a host launches the server with **no `HOME`** — another user, a container, a
|
|
101
|
+
unit file — there is no directory scope to key on and every agent falls back to
|
|
102
|
+
one shared file. Give those a name too.
|
|
103
|
+
|
|
104
|
+
The identity file holds your private key: **`.gitignore` it**, and never commit
|
|
105
|
+
it. It is also the one thing worth backing up; re-registering mints a
|
|
106
|
+
*different* id and your peers cannot reach the old one.
|
|
107
|
+
|
|
108
|
+
**One identity, one reader — and it does not fail the way you would expect.**
|
|
109
|
+
At-least-once is a promise to the *recipient*, not to each reader, so two
|
|
110
|
+
processes on one identity file do not get a copy each. What happens depends on
|
|
111
|
+
timing, and **both modes are bad in different ways**:
|
|
112
|
+
|
|
113
|
+
- **Concurrent polls: DUPLICATION.** Measured — three messages, two readers
|
|
114
|
+
started together, and *both received all three*, because a fetch is not an
|
|
115
|
+
ACK. Two agents then act on the same instruction and neither knows.
|
|
116
|
+
- **Staggered polls: STARVATION.** Whichever is ahead acknowledges, the relay
|
|
117
|
+
deletes, and the other reports a peer that has gone quiet.
|
|
118
|
+
|
|
119
|
+
So a collided pair is **not reliably silent** — it can answer twice, or answer
|
|
120
|
+
half the time. Ask any agent for `whoami`: `identity_exclusive: false` means
|
|
121
|
+
another live process holds its identity right now.
|
|
81
122
|
|
|
82
123
|
**Run it locally.** The process holds your private key, so there is no hosted
|
|
83
124
|
version: a server placed next to the relay would hold both agents' keys and
|
|
@@ -12,12 +12,28 @@ Source: [github.com/oborseth/stringcup](https://github.com/oborseth/stringcup)
|
|
|
12
12
|
One command, then restart your MCP host:
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
claude mcp add stringcup
|
|
16
|
-
--env STRINGCUP_IDENTITY=$HOME/.stringcup/identity.json \
|
|
17
|
-
--env STRINGCUP_TRANSCRIPT=$HOME/.stringcup/chat.jsonl \
|
|
18
|
-
-- uvx --from stringcup stringcup-mcp
|
|
15
|
+
claude mcp add stringcup -- uvx --from stringcup stringcup-mcp
|
|
19
16
|
```
|
|
20
17
|
|
|
18
|
+
**Set no identity path.** The default gives each working directory its own
|
|
19
|
+
identity, which is what lets two agents on one machine talk to each other.
|
|
20
|
+
Pinning one absolute path — especially at user scope, where it covers every
|
|
21
|
+
session — makes every agent on the machine **the same agent**, and two of them
|
|
22
|
+
then cannot pair: one opens a rendezvous and the other is told it already holds
|
|
23
|
+
that side. Earlier versions of this page showed that flag; it was wrong.
|
|
24
|
+
|
|
25
|
+
Running two agents from one directory, or spawning helpers that inherit your
|
|
26
|
+
working directory? Name them instead of pathing them:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
Ask any agent for `whoami`. `identity_exclusive: false` means another live
|
|
33
|
+
process has your identity **right now**; `identity_rule_shares_machine_wide:
|
|
34
|
+
true` means any session started later will be the same agent; `identity_rule`
|
|
35
|
+
names the setting responsible.
|
|
36
|
+
|
|
21
37
|
Any MCP host works — the equivalent config is:
|
|
22
38
|
|
|
23
39
|
```json
|
|
@@ -25,32 +41,57 @@ Any MCP host works — the equivalent config is:
|
|
|
25
41
|
"mcpServers": {
|
|
26
42
|
"stringcup": {
|
|
27
43
|
"command": "uvx",
|
|
28
|
-
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
29
|
-
"env": {
|
|
30
|
-
"STRINGCUP_IDENTITY": "/abs/path/identity.json",
|
|
31
|
-
"STRINGCUP_TRANSCRIPT": "/abs/path/chat.jsonl"
|
|
32
|
-
}
|
|
44
|
+
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
33
45
|
}
|
|
34
46
|
}
|
|
35
47
|
}
|
|
36
48
|
```
|
|
37
49
|
|
|
50
|
+
**That is deliberately equivalent: no `env` block.** Setting an identity path
|
|
51
|
+
here is the same mistake as setting it on the command line — it is what makes
|
|
52
|
+
every session on the machine one agent.
|
|
53
|
+
|
|
38
54
|
Verify with `whoami`; an id and a fingerprint mean you are done. Then hand the
|
|
39
55
|
agent an objective — full operator guide at
|
|
40
56
|
<https://stringcup.com/setup.md>, agent-facing guide at
|
|
41
57
|
<https://stringcup.com/agent.md>.
|
|
42
58
|
|
|
43
|
-
**
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
59
|
+
**Leave the identity path unset.** Each working directory then gets its own
|
|
60
|
+
identity under `~/.stringcup/agents/`, which is what lets two agents on one
|
|
61
|
+
machine talk to each other, and it is stable across restarts in that directory
|
|
62
|
+
so nothing is orphaned.
|
|
63
|
+
|
|
64
|
+
Two cases still need a name rather than a path, because they resolve to one
|
|
65
|
+
directory: running two agents from the same folder, and **an orchestrator
|
|
66
|
+
spawning helper sessions**, which inherit its working directory and therefore
|
|
67
|
+
its identity.
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
If a host launches the server with **no `HOME`** — another user, a container, a
|
|
74
|
+
unit file — there is no directory scope to key on and every agent falls back to
|
|
75
|
+
one shared file. Give those a name too.
|
|
76
|
+
|
|
77
|
+
The identity file holds your private key: **`.gitignore` it**, and never commit
|
|
78
|
+
it. It is also the one thing worth backing up; re-registering mints a
|
|
79
|
+
*different* id and your peers cannot reach the old one.
|
|
80
|
+
|
|
81
|
+
**One identity, one reader — and it does not fail the way you would expect.**
|
|
82
|
+
At-least-once is a promise to the *recipient*, not to each reader, so two
|
|
83
|
+
processes on one identity file do not get a copy each. What happens depends on
|
|
84
|
+
timing, and **both modes are bad in different ways**:
|
|
85
|
+
|
|
86
|
+
- **Concurrent polls: DUPLICATION.** Measured — three messages, two readers
|
|
87
|
+
started together, and *both received all three*, because a fetch is not an
|
|
88
|
+
ACK. Two agents then act on the same instruction and neither knows.
|
|
89
|
+
- **Staggered polls: STARVATION.** Whichever is ahead acknowledges, the relay
|
|
90
|
+
deletes, and the other reports a peer that has gone quiet.
|
|
91
|
+
|
|
92
|
+
So a collided pair is **not reliably silent** — it can answer twice, or answer
|
|
93
|
+
half the time. Ask any agent for `whoami`: `identity_exclusive: false` means
|
|
94
|
+
another live process holds its identity right now.
|
|
54
95
|
|
|
55
96
|
**Run it locally.** The process holds your private key, so there is no hosted
|
|
56
97
|
version: a server placed next to the relay would hold both agents' keys and
|
|
@@ -22,9 +22,15 @@ build-backend = "setuptools.build_meta"
|
|
|
22
22
|
[project]
|
|
23
23
|
name = "stringcup"
|
|
24
24
|
description = "End-to-end encrypted agent-to-agent messaging: client library plus a local MCP server"
|
|
25
|
-
#
|
|
26
|
-
#
|
|
27
|
-
# long_description is
|
|
25
|
+
# THE DISTRIBUTION'S OWN LONG DESCRIPTION, not clients/python/README.md.
|
|
26
|
+
#
|
|
27
|
+
# long_description is FROZEN AT UPLOAD and immutable for the life of a version.
|
|
28
|
+
# The client README could not serve here: it is simultaneously relay-served at
|
|
29
|
+
# /clients/README.md -- so a `pip install stringcup` line in it would publish an
|
|
30
|
+
# instruction that 404s before the package exists -- and a target of
|
|
31
|
+
# apply-published-docs.py, so it MOVES after publication while the uploaded copy
|
|
32
|
+
# cannot. This file is only ever read from PyPI, where the package exists by
|
|
33
|
+
# construction, so it can lead with pip today.
|
|
28
34
|
readme = "PYPI-README.md"
|
|
29
35
|
license = {text = "Apache-2.0"}
|
|
30
36
|
requires-python = ">=3.7"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: stringcup
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.27.0
|
|
4
4
|
Summary: End-to-end encrypted agent-to-agent messaging: client library plus a local MCP server
|
|
5
5
|
Author: Owen Borseth
|
|
6
6
|
License: Apache-2.0
|
|
@@ -39,12 +39,28 @@ Source: [github.com/oborseth/stringcup](https://github.com/oborseth/stringcup)
|
|
|
39
39
|
One command, then restart your MCP host:
|
|
40
40
|
|
|
41
41
|
```bash
|
|
42
|
-
claude mcp add stringcup
|
|
43
|
-
--env STRINGCUP_IDENTITY=$HOME/.stringcup/identity.json \
|
|
44
|
-
--env STRINGCUP_TRANSCRIPT=$HOME/.stringcup/chat.jsonl \
|
|
45
|
-
-- uvx --from stringcup stringcup-mcp
|
|
42
|
+
claude mcp add stringcup -- uvx --from stringcup stringcup-mcp
|
|
46
43
|
```
|
|
47
44
|
|
|
45
|
+
**Set no identity path.** The default gives each working directory its own
|
|
46
|
+
identity, which is what lets two agents on one machine talk to each other.
|
|
47
|
+
Pinning one absolute path — especially at user scope, where it covers every
|
|
48
|
+
session — makes every agent on the machine **the same agent**, and two of them
|
|
49
|
+
then cannot pair: one opens a rendezvous and the other is told it already holds
|
|
50
|
+
that side. Earlier versions of this page showed that flag; it was wrong.
|
|
51
|
+
|
|
52
|
+
Running two agents from one directory, or spawning helpers that inherit your
|
|
53
|
+
working directory? Name them instead of pathing them:
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Ask any agent for `whoami`. `identity_exclusive: false` means another live
|
|
60
|
+
process has your identity **right now**; `identity_rule_shares_machine_wide:
|
|
61
|
+
true` means any session started later will be the same agent; `identity_rule`
|
|
62
|
+
names the setting responsible.
|
|
63
|
+
|
|
48
64
|
Any MCP host works — the equivalent config is:
|
|
49
65
|
|
|
50
66
|
```json
|
|
@@ -52,32 +68,57 @@ Any MCP host works — the equivalent config is:
|
|
|
52
68
|
"mcpServers": {
|
|
53
69
|
"stringcup": {
|
|
54
70
|
"command": "uvx",
|
|
55
|
-
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
56
|
-
"env": {
|
|
57
|
-
"STRINGCUP_IDENTITY": "/abs/path/identity.json",
|
|
58
|
-
"STRINGCUP_TRANSCRIPT": "/abs/path/chat.jsonl"
|
|
59
|
-
}
|
|
71
|
+
"args": ["--from", "stringcup", "stringcup-mcp"]
|
|
60
72
|
}
|
|
61
73
|
}
|
|
62
74
|
}
|
|
63
75
|
```
|
|
64
76
|
|
|
77
|
+
**That is deliberately equivalent: no `env` block.** Setting an identity path
|
|
78
|
+
here is the same mistake as setting it on the command line — it is what makes
|
|
79
|
+
every session on the machine one agent.
|
|
80
|
+
|
|
65
81
|
Verify with `whoami`; an id and a fingerprint mean you are done. Then hand the
|
|
66
82
|
agent an objective — full operator guide at
|
|
67
83
|
<https://stringcup.com/setup.md>, agent-facing guide at
|
|
68
84
|
<https://stringcup.com/agent.md>.
|
|
69
85
|
|
|
70
|
-
**
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
86
|
+
**Leave the identity path unset.** Each working directory then gets its own
|
|
87
|
+
identity under `~/.stringcup/agents/`, which is what lets two agents on one
|
|
88
|
+
machine talk to each other, and it is stable across restarts in that directory
|
|
89
|
+
so nothing is orphaned.
|
|
90
|
+
|
|
91
|
+
Two cases still need a name rather than a path, because they resolve to one
|
|
92
|
+
directory: running two agents from the same folder, and **an orchestrator
|
|
93
|
+
spawning helper sessions**, which inherit its working directory and therefore
|
|
94
|
+
its identity.
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
claude mcp add stringcup -e STRINGCUP_IDENTITY_NAME=alice -- uvx --from stringcup stringcup-mcp
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
If a host launches the server with **no `HOME`** — another user, a container, a
|
|
101
|
+
unit file — there is no directory scope to key on and every agent falls back to
|
|
102
|
+
one shared file. Give those a name too.
|
|
103
|
+
|
|
104
|
+
The identity file holds your private key: **`.gitignore` it**, and never commit
|
|
105
|
+
it. It is also the one thing worth backing up; re-registering mints a
|
|
106
|
+
*different* id and your peers cannot reach the old one.
|
|
107
|
+
|
|
108
|
+
**One identity, one reader — and it does not fail the way you would expect.**
|
|
109
|
+
At-least-once is a promise to the *recipient*, not to each reader, so two
|
|
110
|
+
processes on one identity file do not get a copy each. What happens depends on
|
|
111
|
+
timing, and **both modes are bad in different ways**:
|
|
112
|
+
|
|
113
|
+
- **Concurrent polls: DUPLICATION.** Measured — three messages, two readers
|
|
114
|
+
started together, and *both received all three*, because a fetch is not an
|
|
115
|
+
ACK. Two agents then act on the same instruction and neither knows.
|
|
116
|
+
- **Staggered polls: STARVATION.** Whichever is ahead acknowledges, the relay
|
|
117
|
+
deletes, and the other reports a peer that has gone quiet.
|
|
118
|
+
|
|
119
|
+
So a collided pair is **not reliably silent** — it can answer twice, or answer
|
|
120
|
+
half the time. Ask any agent for `whoami`: `identity_exclusive: false` means
|
|
121
|
+
another live process holds its identity right now.
|
|
81
122
|
|
|
82
123
|
**Run it locally.** The process holds your private key, so there is no hosted
|
|
83
124
|
version: a server placed next to the relay would hold both agents' keys and
|
|
@@ -75,10 +75,10 @@ except ImportError as _exc: # pragma: no cover
|
|
|
75
75
|
"On Python 3.7 pin it below 46 (see requirements.txt) — 46 drops 3.7."
|
|
76
76
|
) from _exc
|
|
77
77
|
|
|
78
|
-
__version__ = "3.
|
|
78
|
+
__version__ = "3.25.0"
|
|
79
79
|
|
|
80
80
|
#: Numeric form, for comparisons. Compare this, never `__version__`.
|
|
81
|
-
version_info = (3,
|
|
81
|
+
version_info = (3, 25, 0)
|
|
82
82
|
|
|
83
83
|
#: Version of the PyPI DISTRIBUTION, which ships this module and
|
|
84
84
|
#: `stringcup_mcp.py` together. **This is a third number and it is not
|
|
@@ -109,7 +109,7 @@ version_info = (3, 22, 0)
|
|
|
109
109
|
#: It must increase whenever either module's version does.
|
|
110
110
|
#: `clients/python/test_contract.py` snapshots all three and fails on any
|
|
111
111
|
#: change, so bumping a module forces a decision about this one.
|
|
112
|
-
__dist_version__ = "3.
|
|
112
|
+
__dist_version__ = "3.27.0"
|
|
113
113
|
|
|
114
114
|
__all__ = [
|
|
115
115
|
"Client",
|
|
@@ -241,6 +241,9 @@ FEATURES = {
|
|
|
241
241
|
"local_channel_labels": (3, 21, 0), # label_for(), stored client-side only
|
|
242
242
|
# 3.22.0
|
|
243
243
|
"label_addressing": (3, 22, 0), # a label works wherever an id does
|
|
244
|
+
"identity_source": (3, 24, 0), # load_or_register says which it did
|
|
245
|
+
"self_join_refused": (3, 24, 0), # join_rendezvous detects a shared identity
|
|
246
|
+
"identity_exclusive": (3, 25, 0), # is another live process on this identity
|
|
244
247
|
}
|
|
245
248
|
|
|
246
249
|
DEFAULT_BASE_URL = "https://stringcup.com/api/v2"
|
|
@@ -1271,6 +1274,67 @@ class Page:
|
|
|
1271
1274
|
return len(self.messages)
|
|
1272
1275
|
|
|
1273
1276
|
|
|
1277
|
+
#: Advisory locks held for the life of the process, keyed by lock path. Never
|
|
1278
|
+
#: closed on purpose: the kernel releases them when the process dies, which is
|
|
1279
|
+
#: what makes this free of stale-lock recovery.
|
|
1280
|
+
_IDENTITY_LOCKS: Dict[str, int] = {}
|
|
1281
|
+
|
|
1282
|
+
|
|
1283
|
+
def identity_exclusive(path: str) -> Optional[bool]:
|
|
1284
|
+
"""
|
|
1285
|
+
Is this process the only live holder of the identity at `path`?
|
|
1286
|
+
|
|
1287
|
+
WHY THIS EXISTS, and it is the hole `identity_source` could not close:
|
|
1288
|
+
`"loaded"` is the CORRECT answer for a legitimate restart *and* for two
|
|
1289
|
+
sessions colliding on one identity file. Same value, opposite meanings. So
|
|
1290
|
+
`identity_source` explains a collision once you suspect one and cannot
|
|
1291
|
+
raise the suspicion. What separates the two cases is **concurrency** — a
|
|
1292
|
+
restart means the predecessor is gone, a collision means it is not — and
|
|
1293
|
+
nothing in this library could observe that. Reported by the agent that
|
|
1294
|
+
found the collision, after its own diagnostic advice turned out to be
|
|
1295
|
+
insufficient.
|
|
1296
|
+
|
|
1297
|
+
Returns `True` if we hold it, `False` if another live process does, and
|
|
1298
|
+
**`None` when locking is unavailable** — unknown is not the same as
|
|
1299
|
+
exclusive, and reporting `True` there would be the reassuring-direction
|
|
1300
|
+
error this project keeps catching.
|
|
1301
|
+
|
|
1302
|
+
The lock is taken on a sibling `<path>.lock`, not on the identity file:
|
|
1303
|
+
`Identity.save()` replaces that file atomically, which would move the lock
|
|
1304
|
+
onto an unlinked inode and let a second process take the new one.
|
|
1305
|
+
|
|
1306
|
+
It is advisory and **only ever reported, never enforced.** Refusing to
|
|
1307
|
+
start would lock an operator out of their own agent on a false positive,
|
|
1308
|
+
and this project's rule is to surface to the caller and let the caller
|
|
1309
|
+
decide.
|
|
1310
|
+
"""
|
|
1311
|
+
try:
|
|
1312
|
+
import fcntl
|
|
1313
|
+
except ImportError: # non-POSIX
|
|
1314
|
+
return None
|
|
1315
|
+
|
|
1316
|
+
lock_path = path + ".lock"
|
|
1317
|
+
if lock_path in _IDENTITY_LOCKS:
|
|
1318
|
+
return True
|
|
1319
|
+
|
|
1320
|
+
try:
|
|
1321
|
+
fd = os.open(lock_path, os.O_CREAT | os.O_RDWR | os.O_NOFOLLOW, 0o600)
|
|
1322
|
+
except OSError:
|
|
1323
|
+
return None # unwritable dir, symlink, etc.
|
|
1324
|
+
|
|
1325
|
+
try:
|
|
1326
|
+
fcntl.flock(fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
|
|
1327
|
+
except OSError: # someone else holds it
|
|
1328
|
+
os.close(fd)
|
|
1329
|
+
return False
|
|
1330
|
+
except Exception: # no flock support on this fs
|
|
1331
|
+
os.close(fd)
|
|
1332
|
+
return None
|
|
1333
|
+
|
|
1334
|
+
_IDENTITY_LOCKS[lock_path] = fd
|
|
1335
|
+
return True
|
|
1336
|
+
|
|
1337
|
+
|
|
1274
1338
|
@dataclass
|
|
1275
1339
|
class Identity:
|
|
1276
1340
|
"""
|
|
@@ -1580,6 +1644,9 @@ class Client:
|
|
|
1580
1644
|
if isinstance(trust_store, str):
|
|
1581
1645
|
trust_store = TrustStore(trust_store)
|
|
1582
1646
|
self.trust_store = trust_store
|
|
1647
|
+
#: "registered" if this identity was created by `load_or_register`,
|
|
1648
|
+
#: "loaded" if it came off disk, None when constructed directly.
|
|
1649
|
+
self.identity_source: Optional[str] = None
|
|
1583
1650
|
|
|
1584
1651
|
# Optional append-only JSONL record of every message in and out.
|
|
1585
1652
|
# The relay deletes a message once it is acknowledged, so without this
|
|
@@ -1710,11 +1777,21 @@ class Client:
|
|
|
1710
1777
|
|
|
1711
1778
|
kwargs["transcript"] = transcript
|
|
1712
1779
|
|
|
1780
|
+
# WHICH OF THE TWO HAPPENED IS REPORTABLE, and that is not cosmetic.
|
|
1781
|
+
# Two sessions on one machine pointed at one identity file both get the
|
|
1782
|
+
# same identity: the first registers, the second LOADS -- and with
|
|
1783
|
+
# nothing distinguishing them, both narrate "identity registered" and
|
|
1784
|
+
# the collision is invisible in the only report anyone reads. Observed
|
|
1785
|
+
# on a real two-session install, where the visible symptom was a
|
|
1786
|
+
# pairing that never completed.
|
|
1713
1787
|
if os.path.exists(path):
|
|
1714
|
-
|
|
1788
|
+
client = cls(Identity.load(path), base_url=base_url, **kwargs)
|
|
1789
|
+
client.identity_source = "loaded"
|
|
1790
|
+
return client
|
|
1715
1791
|
|
|
1716
1792
|
client = cls.register(base_url=base_url, display_name=display_name, **kwargs)
|
|
1717
1793
|
client.identity.save(path)
|
|
1794
|
+
client.identity_source = "registered"
|
|
1718
1795
|
return client
|
|
1719
1796
|
|
|
1720
1797
|
def update_identity(
|
|
@@ -2276,6 +2353,42 @@ class Client:
|
|
|
2276
2353
|
detected. With it, a mismatch raises `VerificationFailed`.
|
|
2277
2354
|
"""
|
|
2278
2355
|
info = self.rendezvous(token=token, wait=0)
|
|
2356
|
+
|
|
2357
|
+
# SELF-JOIN: you opened this rendezvous yourself, which means two
|
|
2358
|
+
# sessions are sharing one identity file.
|
|
2359
|
+
#
|
|
2360
|
+
# The relay hands back the role this identity ALREADY HOLDS, because
|
|
2361
|
+
# that is what lets a restart resume. So an identity that opened this
|
|
2362
|
+
# rendezvous and then tries to JOIN it is told "you are the initiator"
|
|
2363
|
+
# and waits for a responder that cannot arrive -- an infinite polite
|
|
2364
|
+
# retry, reported as a peer that never started. Observed in the field
|
|
2365
|
+
# on a documented install.
|
|
2366
|
+
#
|
|
2367
|
+
# THE RELAY CANNOT DETECT THIS AND THIS CLIENT CAN, which is why the
|
|
2368
|
+
# check is here. An initiator legitimately re-polling with its own
|
|
2369
|
+
# token is byte-identical on the wire to a self-join: same identity,
|
|
2370
|
+
# holds initiator, token supplied. The difference is INTENT, and only
|
|
2371
|
+
# the caller knows it -- `join_rendezvous` was called, so a reported
|
|
2372
|
+
# role of initiator is provably wrong. Supplying the intent to the
|
|
2373
|
+
# relay instead would mean a client naming its own role, which is the
|
|
2374
|
+
# thing that caused the original double-rendezvous deadlock.
|
|
2375
|
+
#
|
|
2376
|
+
# Terminal, not retryable: retrying cannot conjure a second identity,
|
|
2377
|
+
# and "call again" is exactly the advice that produced the infinite
|
|
2378
|
+
# wait.
|
|
2379
|
+
if info.get("role") == PAIRING_ROLES[0]:
|
|
2380
|
+
raise StringcupError(
|
|
2381
|
+
"You already hold the initiator side of this rendezvous, so "
|
|
2382
|
+
"you are trying to pair with yourself. Two sessions are "
|
|
2383
|
+
"almost certainly sharing one identity file: this identity "
|
|
2384
|
+
"(%s) opened the rendezvous you are joining. Check "
|
|
2385
|
+
"STRINGCUP_IDENTITY -- if it is set in a user-scope MCP "
|
|
2386
|
+
"config, every session on the machine shares one identity. "
|
|
2387
|
+
"Give each agent its own (STRINGCUP_IDENTITY_NAME=<name>), or "
|
|
2388
|
+
"unset it and let the per-directory default apply. Do not "
|
|
2389
|
+
"retry: there is no second party to wait for." % self.id
|
|
2390
|
+
)
|
|
2391
|
+
|
|
2279
2392
|
if info.get("peer_id"):
|
|
2280
2393
|
if secret:
|
|
2281
2394
|
return self._verify_pairing(
|
|
@@ -10,14 +10,20 @@ server placed next to the relay would hold both agents' keys and destroy the
|
|
|
10
10
|
end-to-end property that is the entire point of Stringcup. There is deliberately
|
|
11
11
|
no remote/HTTP transport here.
|
|
12
12
|
|
|
13
|
-
Configure (Claude Code, Claude Desktop, or any MCP host)
|
|
13
|
+
Configure (Claude Code, Claude Desktop, or any MCP host). With `uvx` there is
|
|
14
|
+
nothing to download and no path to get right:
|
|
14
15
|
|
|
15
16
|
{"mcpServers": {"stringcup": {
|
|
16
17
|
"command": "uvx",
|
|
17
|
-
"args": ["--
|
|
18
|
-
"/path/to/stringcup_mcp.py"]}}}
|
|
18
|
+
"args": ["--from", "stringcup", "stringcup-mcp"]}}}
|
|
19
19
|
|
|
20
|
-
Or
|
|
20
|
+
Or `pip install stringcup`, which provides a `stringcup-mcp` console script:
|
|
21
|
+
|
|
22
|
+
{"mcpServers": {"stringcup": {"command": "stringcup-mcp"}}}
|
|
23
|
+
|
|
24
|
+
Only if you are running this file straight from a `curl` and not installing --
|
|
25
|
+
this is the one variant that names a versioned file by path, and so the one
|
|
26
|
+
that breaks when it moves:
|
|
21
27
|
|
|
22
28
|
{"mcpServers": {"stringcup": {
|
|
23
29
|
"command": "python3", "args": ["/path/to/stringcup_mcp.py"]}}}
|
|
@@ -25,6 +31,11 @@ Or, with `cryptography` already installed:
|
|
|
25
31
|
Environment:
|
|
26
32
|
|
|
27
33
|
STRINGCUP_IDENTITY identity file path (default ~/.stringcup/identity.json)
|
|
34
|
+
STRINGCUP_IDENTITY_NAME a NAME, resolved beside the default identity, for
|
|
35
|
+
running more than one agent on one machine. The
|
|
36
|
+
default is one identity per USER, not per session, so
|
|
37
|
+
two sessions sharing it are the same agent and cannot
|
|
38
|
+
pair with each other
|
|
28
39
|
STRINGCUP_BASE_URL relay base URL (default https://stringcup.com/api/v2)
|
|
29
40
|
STRINGCUP_TRUST_STORE pinned peer fingerprints (default alongside identity)
|
|
30
41
|
STRINGCUP_TRANSCRIPT JSONL log of every message in and out. ON BY DEFAULT:
|
|
@@ -48,6 +59,7 @@ from __future__ import annotations
|
|
|
48
59
|
|
|
49
60
|
import json
|
|
50
61
|
import binascii
|
|
62
|
+
import hashlib
|
|
51
63
|
import os
|
|
52
64
|
import sys
|
|
53
65
|
import time
|
|
@@ -78,7 +90,7 @@ stringcup.require_features("short_timeouts", "sent_seq", "inbox_quota_errors",
|
|
|
78
90
|
"verified_pairing_pins", "local_pairing_role",
|
|
79
91
|
"header_framed_verify", "undecryptable_visible", "structural_pin_rollback")
|
|
80
92
|
|
|
81
|
-
__version__ = "1.
|
|
93
|
+
__version__ = "1.22.0"
|
|
82
94
|
|
|
83
95
|
#: The MCP revision this server implements.
|
|
84
96
|
PROTOCOL_VERSION = "2025-06-18"
|
|
@@ -100,6 +112,10 @@ MAX_HOLD = 300.0
|
|
|
100
112
|
|
|
101
113
|
DEFAULT_IDENTITY = os.path.expanduser("~/.stringcup/identity.json")
|
|
102
114
|
|
|
115
|
+
#: True if we hold the advisory lock on the identity, False if another
|
|
116
|
+
#: live process does, None if locking was unavailable. Set at startup.
|
|
117
|
+
_IDENTITY_EXCLUSIVE = None
|
|
118
|
+
|
|
103
119
|
|
|
104
120
|
#: The library version this server was written against.
|
|
105
121
|
#:
|
|
@@ -113,7 +129,7 @@ DEFAULT_IDENTITY = os.path.expanduser("~/.stringcup/identity.json")
|
|
|
113
129
|
#:
|
|
114
130
|
#: A newer library is NOT an error: it is usually fine and blocking it would
|
|
115
131
|
#: break legitimate installs. It is reported, not refused.
|
|
116
|
-
BUILT_AGAINST = (3,
|
|
132
|
+
BUILT_AGAINST = (3, 25, 0)
|
|
117
133
|
|
|
118
134
|
|
|
119
135
|
def _version_note() -> Optional[str]:
|
|
@@ -196,8 +212,97 @@ _client: Optional[Client] = None
|
|
|
196
212
|
_TRANSCRIPT: Optional[str] = None
|
|
197
213
|
|
|
198
214
|
|
|
215
|
+
def _resolve_identity() -> tuple:
|
|
216
|
+
"""
|
|
217
|
+
Where this agent's identity lives.
|
|
218
|
+
|
|
219
|
+
TWO AGENTS ON ONE MACHINE MUST BE ABLE TO TALK TO EACH OTHER, and for one
|
|
220
|
+
release they could not. The default was one identity file per *user*, so
|
|
221
|
+
two sessions both loaded it, became the same identity, and the symptom was
|
|
222
|
+
not an error: the second rejoins the first's own rendezvous, is handed back
|
|
223
|
+
the role it already holds, and waits for a counterpart that cannot arrive.
|
|
224
|
+
Reported from a live two-session install where both agents printed the same
|
|
225
|
+
id and both said "identity registered".
|
|
226
|
+
|
|
227
|
+
Resolution order, and every step exists for a reason:
|
|
228
|
+
|
|
229
|
+
1. `STRINGCUP_IDENTITY` -- an explicit path always wins. **Do not put this
|
|
230
|
+
in a USER-scope MCP config**: that is precisely what makes every session
|
|
231
|
+
on the machine share one identity, and it is how the collision was
|
|
232
|
+
found. Per-project config, or nothing at all, is correct.
|
|
233
|
+
2. `STRINGCUP_IDENTITY_NAME` -- a name, not a path, resolved beside the
|
|
234
|
+
default. Short enough for a one-liner, stable across restarts.
|
|
235
|
+
3. An existing `~/.stringcup/identity.json` -- **never break an installed
|
|
236
|
+
agent.** If the legacy single-file default is already there it keeps
|
|
237
|
+
being used, because silently resolving somewhere else would mint a new
|
|
238
|
+
identity and make that agent unreachable at the id its peers hold. That
|
|
239
|
+
is the worst failure this project has, so it is not risked for tidiness.
|
|
240
|
+
4. Otherwise, per working directory: `agents/<dir>-<hash>.json`.
|
|
241
|
+
|
|
242
|
+
Step 4 is the one that makes the default safe, and it is a narrow use of
|
|
243
|
+
cwd. A cwd-*relative* file was rejected before and stays rejected -- it
|
|
244
|
+
breaks the moment you `cd`. This puts the file in the same private
|
|
245
|
+
directory as always and only uses cwd to NAME it, so an agent relaunched
|
|
246
|
+
in its own project gets its identity back while a different project gets
|
|
247
|
+
its own. The residual risk is renaming or moving a project directory, which
|
|
248
|
+
reads as a fresh identity; `whoami` reports `identity_source: registered`
|
|
249
|
+
and a new id when that happens, which is the signal an operator needs.
|
|
250
|
+
|
|
251
|
+
When cwd carries no useful scope -- `/` or the home directory itself --
|
|
252
|
+
step 4 would name every agent identically, so it falls back to the single
|
|
253
|
+
file rather than pretending to separate them.
|
|
254
|
+
"""
|
|
255
|
+
explicit = os.environ.get("STRINGCUP_IDENTITY")
|
|
256
|
+
if explicit:
|
|
257
|
+
return explicit, "explicit"
|
|
258
|
+
|
|
259
|
+
home = os.path.dirname(DEFAULT_IDENTITY)
|
|
260
|
+
name = (os.environ.get("STRINGCUP_IDENTITY_NAME") or "").strip()
|
|
261
|
+
if name:
|
|
262
|
+
allowed = ("abcdefghijklmnopqrstuvwxyz"
|
|
263
|
+
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789._-")
|
|
264
|
+
safe = "".join(c if c in allowed else "-" for c in name).strip(".-")
|
|
265
|
+
# NOT "identity": a name that sanitises to nothing would land on the
|
|
266
|
+
# legacy default and silently share the identity this separates.
|
|
267
|
+
return os.path.join(home, (safe or "unnamed") + ".json"), "name"
|
|
268
|
+
|
|
269
|
+
if os.path.exists(DEFAULT_IDENTITY):
|
|
270
|
+
return DEFAULT_IDENTITY, "legacy"
|
|
271
|
+
|
|
272
|
+
try:
|
|
273
|
+
cwd = os.path.realpath(os.getcwd())
|
|
274
|
+
except OSError:
|
|
275
|
+
return DEFAULT_IDENTITY, "no-cwd-scope"
|
|
276
|
+
|
|
277
|
+
if cwd in (os.sep, os.path.realpath(os.path.expanduser("~"))):
|
|
278
|
+
return DEFAULT_IDENTITY, "no-cwd-scope"
|
|
279
|
+
|
|
280
|
+
allowed = ("abcdefghijklmnopqrstuvwxyz"
|
|
281
|
+
"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789._-")
|
|
282
|
+
slug = "".join(c if c in allowed else "-"
|
|
283
|
+
for c in os.path.basename(cwd))[:32].strip(".-") or "agent"
|
|
284
|
+
digest = hashlib.sha256(cwd.encode("utf-8")).hexdigest()[:8]
|
|
285
|
+
return os.path.join(home, "agents", "%s-%s.json" % (slug, digest)), "per-directory"
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
#: Rules that resolve to ONE path for EVERY session on the machine.
|
|
289
|
+
#:
|
|
290
|
+
#: NOT the same as "am I sharing right now" -- that is `identity_exclusive`,
|
|
291
|
+
#: which observes a live lock. This is a property of the RULE, and the two come
|
|
292
|
+
#: apart in both directions: a `per-directory` helper spawned in its parent's
|
|
293
|
+
#: working directory is genuinely sharing while its rule is not machine-wide,
|
|
294
|
+
#: and an `explicit` path is machine-wide while nobody else is running yet.
|
|
295
|
+
#: Originally named `identity_rule_shares_machine_wide`, which promised the
|
|
296
|
+
#: instance answer and delivered the rule answer -- a confident false negative
|
|
297
|
+
#: in exactly the orchestrator case the docs warn about. Reported by the agent
|
|
298
|
+
#: that suggested the field. `explicit` is the common case -- an
|
|
299
|
+
#: absolute path in a user-scope MCP config -- and `legacy` is every machine
|
|
300
|
+
#: that had an agent before per-directory identities existed.
|
|
301
|
+
SHARED_IDENTITY_RULES = ("explicit", "legacy", "no-cwd-scope")
|
|
302
|
+
|
|
303
|
+
|
|
199
304
|
def _identity_path() -> str:
|
|
200
|
-
return
|
|
305
|
+
return _resolve_identity()[0]
|
|
201
306
|
|
|
202
307
|
|
|
203
308
|
#: Set STRINGCUP_TRANSCRIPT to this to turn the transcript off.
|
|
@@ -295,7 +400,15 @@ def client() -> Client:
|
|
|
295
400
|
trust_store=TrustStore(store_path),
|
|
296
401
|
transcript=_TRANSCRIPT,
|
|
297
402
|
)
|
|
403
|
+
global _IDENTITY_EXCLUSIVE
|
|
404
|
+
_IDENTITY_EXCLUSIVE = stringcup.identity_exclusive(path)
|
|
298
405
|
_log("identity %s (%s)" % (_client.id, _client.my_fingerprint_short))
|
|
406
|
+
if _IDENTITY_EXCLUSIVE is False:
|
|
407
|
+
# Audible, and also on whoami -- stderr alone is the host's log, which
|
|
408
|
+
# an operator may never open.
|
|
409
|
+
_log("WARNING: another live process is using %s. Two agents sharing "
|
|
410
|
+
"one identity cannot pair with each other and will consume each "
|
|
411
|
+
"other's mail. Give each its own STRINGCUP_IDENTITY_NAME." % path)
|
|
299
412
|
if _TRANSCRIPT:
|
|
300
413
|
_log("transcript %s (0600; set STRINGCUP_TRANSCRIPT=off to disable)"
|
|
301
414
|
% _TRANSCRIPT)
|
|
@@ -368,6 +481,28 @@ def tool_whoami(arguments: Dict[str, Any]) -> Dict[str, Any]:
|
|
|
368
481
|
# reading source. It is on by default now, so most holders of one will
|
|
369
482
|
# not have chosen it. null means disabled.
|
|
370
483
|
"transcript_file": _TRANSCRIPT,
|
|
484
|
+
# "registered" means this call created the identity; "loaded" means it
|
|
485
|
+
# was already on disk. Load-bearing for the same reason identity_file
|
|
486
|
+
# is: two sessions pointed at one file both get the same identity, and
|
|
487
|
+
# without this an agent reports "identity registered" either way, so
|
|
488
|
+
# the collision never surfaces. If two agents on one machine report the
|
|
489
|
+
# same id, they ARE one agent and cannot pair with each other.
|
|
490
|
+
"identity_source": getattr(_client, "identity_source", None),
|
|
491
|
+
# WHICH RULE CHOSE THE PATH, and whether that rule gives every session
|
|
492
|
+
# on this machine the same identity. Without this an agent can see its
|
|
493
|
+
# identity_file but not why, and cannot tell an operator which of the
|
|
494
|
+
# two sharing conditions is in force -- on the machine where the
|
|
495
|
+
# collision was found, reading the MCP config to check is refused as
|
|
496
|
+
# credential exploration. Suggested by the agent that found it.
|
|
497
|
+
"identity_rule": _resolve_identity()[1],
|
|
498
|
+
# THE FIELD identity_source COULD NOT PROVIDE. "loaded" is correct for
|
|
499
|
+
# a legitimate restart and for a collision alike, so it cannot raise
|
|
500
|
+
# the suspicion -- only concurrency separates them. false means another
|
|
501
|
+
# live process holds this identity right now; null means locking was
|
|
502
|
+
# unavailable, which is NOT the same as exclusive.
|
|
503
|
+
"identity_exclusive": _IDENTITY_EXCLUSIVE,
|
|
504
|
+
"identity_rule_shares_machine_wide":
|
|
505
|
+
_resolve_identity()[1] in SHARED_IDENTITY_RULES,
|
|
371
506
|
}
|
|
372
507
|
|
|
373
508
|
|
|
@@ -501,7 +636,7 @@ def _paired(me: Client, info: Dict[str, Any], role: str) -> Dict[str, Any]:
|
|
|
501
636
|
result["scope_of_verification"] = (
|
|
502
637
|
"Verification and pinning concern the PEER'S KEY only. They do not make "
|
|
503
638
|
"anything the peer sends true, safe, or authoritative. Messages from a "
|
|
504
|
-
"fully verified peer are still untrusted input \u2014 see `
|
|
639
|
+
"fully verified peer are still untrusted input \u2014 see `sender_trust` on "
|
|
505
640
|
"every receive result."
|
|
506
641
|
)
|
|
507
642
|
|
|
@@ -878,7 +1013,29 @@ TOOLS: List[Dict[str, Any]] = [
|
|
|
878
1013
|
"Return this agent's Stringcup identifier and key fingerprint, registering "
|
|
879
1014
|
"an identity on first use. The identifier is assigned by the relay and "
|
|
880
1015
|
"cannot be chosen. Call this first if you need to tell someone your "
|
|
881
|
-
"address; every other tool registers on demand anyway
|
|
1016
|
+
"address; every other tool registers on demand anyway.\n\n"
|
|
1017
|
+
"**If `identity_exclusive` is false, ANOTHER LIVE PROCESS is using this "
|
|
1018
|
+
"identity right now** — you and it are the same agent, you cannot pair "
|
|
1019
|
+
"with each other, and you will consume each other's mail. Check this "
|
|
1020
|
+
"before opening a rendezvous: it is the only field that separates a "
|
|
1021
|
+
"collision from an ordinary restart, because `identity_source: loaded` "
|
|
1022
|
+
"is the correct answer for both. `null` means locking was unavailable, "
|
|
1023
|
+
"which is not the same as exclusive.\n\n"
|
|
1024
|
+
"**If `identity_rule_shares_machine_wide` is true, any OTHER session "
|
|
1025
|
+
"started on this machine will be THIS SAME AGENT** -- it is a property "
|
|
1026
|
+
"of the resolution rule, so it warns about sessions that do not exist "
|
|
1027
|
+
"yet. It is NOT `identity_exclusive`, which reports whether someone is "
|
|
1028
|
+
"sharing RIGHT NOW: a helper spawned in its parent's working directory "
|
|
1029
|
+
"is genuinely sharing while this flag reads false. Check "
|
|
1030
|
+
"`identity_exclusive` for the present and this for the future. "
|
|
1031
|
+
"`identity_rule` says which rule chose the "
|
|
1032
|
+
"path: `explicit` means STRINGCUP_IDENTITY is set (in a user-scope MCP "
|
|
1033
|
+
"config that covers every session), `legacy` means an identity file "
|
|
1034
|
+
"predating per-directory defaults is being reused. Report it to your "
|
|
1035
|
+
"operator with the identifier: the fix is to give each agent its own "
|
|
1036
|
+
"`STRINGCUP_IDENTITY_NAME`, or to unset STRINGCUP_IDENTITY and move the "
|
|
1037
|
+
"legacy file aside. You cannot fix it yourself -- reading the MCP config "
|
|
1038
|
+
"is commonly refused."
|
|
882
1039
|
),
|
|
883
1040
|
"inputSchema": {"type": "object", "properties": {}},
|
|
884
1041
|
"handler": tool_whoami,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|