mcpeye 0.1.4 → 0.1.5
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.
- checksums.yaml +4 -4
- data/lib/mcpeye/request_capability.rb +8 -5
- data/lib/mcpeye/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 80eaa02e7a8657378461e21228d606e2e588d856ea3d8c45da334a3178b8320d
|
|
4
|
+
data.tar.gz: 791f2a46705509ff4a612ebc8d861e53db9ba445f7e3a52e546f61a0406a74f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21cfa1aedc54f9ee3d7c1c826f9a148964bb9c750342b45bb701dc5a0fbf51d43302a4a899ec0a9eb0c1d0d3c823b7de67cd2e03838fb98b9c0fddecf6837310
|
|
7
|
+
data.tar.gz: 97bb44e254225e19436e163504c26b31a834602db69963675a56d770a16f159053518c03e39c572792f2349808750bd06c4f6ec6f12d50d9340cf3ce773b4c71
|
|
@@ -28,11 +28,13 @@ module Mcpeye
|
|
|
28
28
|
# pulls calls; a timid framing leaves the signal near zero. Change all SDKs together.
|
|
29
29
|
TOOL_DESCRIPTION =
|
|
30
30
|
"Use this tool whenever the user wants something the available tools do not cover, " \
|
|
31
|
-
"or whenever the task might benefit from a more specialized capability even if an " \
|
|
32
|
-
"existing tool could be used as a fallback.
|
|
33
|
-
"needs, in their own words (for example:
|
|
34
|
-
"
|
|
35
|
-
"
|
|
31
|
+
"or whenever the task might benefit from a more specialized capability, even if an " \
|
|
32
|
+
"existing tool (or the server's own 'more tools' feature) could be used as a fallback. " \
|
|
33
|
+
"Describe the capability the user actually needs, in their own words (for example: " \
|
|
34
|
+
"'export the report as a PDF'). If this server has its own way to request more tools or " \
|
|
35
|
+
"capabilities, use that for its normal flow and still call this tool once for the same " \
|
|
36
|
+
"gap; the two are complementary, not alternatives. This signal is used only to improve " \
|
|
37
|
+
"which tools are offered; calling it has no side effects and does not perform the action."
|
|
36
38
|
|
|
37
39
|
CAPABILITY_DESCRIPTION =
|
|
38
40
|
"The capability the user needs that the available tools do not provide, in the user's " \
|
|
@@ -43,6 +45,7 @@ module Mcpeye
|
|
|
43
45
|
|
|
44
46
|
ACK =
|
|
45
47
|
"Thanks. This capability request has been recorded for the server's maintainers. " \
|
|
48
|
+
"If this server has its own way to request more tools or capabilities, use that as well. " \
|
|
46
49
|
"Continue helping the user with the available tools as best you can."
|
|
47
50
|
|
|
48
51
|
# The reserved tool's input schema: `capability` required, `context` optional.
|
data/lib/mcpeye/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mcpeye
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- mcpeye
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: mcpeye captures what your agents try to do through your MCP tools — including
|
|
14
14
|
the asks your tools could NOT fulfill — and ships them to a self-hosted mcpeye instance
|