@recapt/mcp 0.0.22 → 0.0.26

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.
@@ -99,6 +99,98 @@
99
99
  "required": []
100
100
  }
101
101
  },
102
+ {
103
+ "name": "get_custom_events",
104
+ "description": "Query custom events tracked via Recapt.track(). Returns event occurrence counts, which pages they fire on, property distributions, and temporal patterns. Use to answer 'what custom events are being tracked?', 'how often does event X fire?', 'what properties does event Y have?', or 'which pages trigger the most events?'. These are app-specific events the developer explicitly tracks (purchases, signups, feature usage, etc.), not automatically captured behavioral data.",
105
+ "input_schema": {
106
+ "type": "object",
107
+ "properties": {
108
+ "event_name": {
109
+ "description": "Filter by event name (case-insensitive partial match). If omitted, returns all event types.",
110
+ "type": "string"
111
+ },
112
+ "page_path": {
113
+ "description": "Filter events to a specific page path (partial match)",
114
+ "type": "string"
115
+ },
116
+ "session_id": {
117
+ "description": "Filter events to a specific session",
118
+ "type": "string"
119
+ },
120
+ "property_filters": {
121
+ "description": "Filter events by property values, e.g. { plan: 'pro', amount: 99 }",
122
+ "type": "object"
123
+ },
124
+ "days": {
125
+ "description": "Look back N days (default: 30)",
126
+ "type": "number"
127
+ },
128
+ "limit": {
129
+ "description": "Max documents to scan (default: 500, max: 2000)",
130
+ "type": "number"
131
+ }
132
+ },
133
+ "required": []
134
+ }
135
+ },
136
+ {
137
+ "name": "list_event_names",
138
+ "description": "List all unique custom event names tracked in the last N days. Use this to discover what events are available before querying specific events.",
139
+ "input_schema": {
140
+ "type": "object",
141
+ "properties": {
142
+ "days": {
143
+ "description": "Look back N days (default: 30)",
144
+ "type": "number"
145
+ }
146
+ },
147
+ "required": []
148
+ }
149
+ },
150
+ {
151
+ "name": "get_session_comments",
152
+ "description": "Query user comments and feedback submitted during sessions. These are explicit comments users submit via the feedback widget or Recapt.comment() API - direct user voice about their experience. Use to find sessions where users reported issues, understand user sentiment, or identify pages generating the most feedback.",
153
+ "input_schema": {
154
+ "type": "object",
155
+ "properties": {
156
+ "session_id": {
157
+ "description": "Filter comments to a specific session",
158
+ "type": "string"
159
+ },
160
+ "page_path": {
161
+ "description": "Filter comments to a specific page path (partial match)",
162
+ "type": "string"
163
+ },
164
+ "search": {
165
+ "description": "Search comments by text content (case-insensitive partial match)",
166
+ "type": "string"
167
+ },
168
+ "days": {
169
+ "description": "Look back N days (default: 30)",
170
+ "type": "number"
171
+ },
172
+ "limit": {
173
+ "description": "Max comments to return (default: 100, max: 500)",
174
+ "type": "number"
175
+ }
176
+ },
177
+ "required": []
178
+ }
179
+ },
180
+ {
181
+ "name": "get_comment_stats",
182
+ "description": "Get statistics about user comments/feedback. Returns total comment count, which pages receive the most feedback, and daily trend. Use to understand feedback volume and identify pages where users are most vocal.",
183
+ "input_schema": {
184
+ "type": "object",
185
+ "properties": {
186
+ "days": {
187
+ "description": "Look back N days (default: 30)",
188
+ "type": "number"
189
+ }
190
+ },
191
+ "required": []
192
+ }
193
+ },
102
194
  {
103
195
  "name": "get_form_friction",
104
196
  "description": "Analyze which form fields cause friction on a page. Returns per-field metrics including dwell time, correction rate, and abandonment rate. Use this to identify problematic form fields in checkout, signup, or other forms.",