mcp-scraper 0.32.2 → 0.32.3

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.
@@ -1,12 +1,12 @@
1
1
  {
2
- "generatedAt": "2026-07-22T02:43:42.271Z",
2
+ "generatedAt": "2026-07-22T14:23:17.207Z",
3
3
  "generatedFrom": "dist/bin/mcp-stdio-server.js",
4
4
  "serverInfo": {
5
5
  "name": "mcp-scraper",
6
- "version": "0.32.2"
6
+ "version": "0.32.3"
7
7
  },
8
8
  "counts": {
9
- "unified_stdio": 165
9
+ "unified_stdio": 166
10
10
  },
11
11
  "surfaces": {
12
12
  "unified_stdio": [
@@ -85,6 +85,7 @@
85
85
  "get-schedule-status",
86
86
  "get-vault-app-link",
87
87
  "get-vault-contract",
88
+ "gmail_search_contacts",
88
89
  "gmail_send_message",
89
90
  "google_ads_page_intel",
90
91
  "google_ads_search",
@@ -9027,6 +9028,167 @@
9027
9028
  "taskSupport": "forbidden"
9028
9029
  }
9029
9030
  },
9031
+ {
9032
+ "name": "gmail_search_contacts",
9033
+ "title": "Search Gmail Contacts",
9034
+ "description": "Search Gmail with standard Gmail query syntax (e.g. \"from:acme.com after:2026/03/22\") and get back deduplicated sender contacts (email, name, domain, message count, first/last seen, sample subjects) instead of raw messages. Read-only — works on any connected Gmail connection from list_service_connections, no actionsEnabled required. Use this instead of looping list-messages/get-message yourself: those return bare message IDs and full raw MIME per message, which does not scale past a handful of messages. Reports totalMatches and truncated so incomplete coverage from a large result set is never silent — pass the returned nextPageToken to continue.",
9035
+ "inputSchema": {
9036
+ "type": "object",
9037
+ "properties": {
9038
+ "connectionId": {
9039
+ "type": "string",
9040
+ "minLength": 1,
9041
+ "description": "A Gmail connectionId from list_service_connections. Read-only — does not require actionsEnabled."
9042
+ },
9043
+ "query": {
9044
+ "type": "string",
9045
+ "minLength": 1,
9046
+ "maxLength": 500,
9047
+ "description": "Gmail search syntax, e.g. \"from:brandnorth.com after:2026/03/22\" or \"brandnorth.com\"."
9048
+ },
9049
+ "maxMessages": {
9050
+ "type": "integer",
9051
+ "minimum": 1,
9052
+ "maximum": 150,
9053
+ "default": 50,
9054
+ "description": "Max messages to fetch and aggregate in this call. Paginate with pageToken for more; the response reports totalMatches and truncated so undercoverage is never silent."
9055
+ },
9056
+ "pageToken": {
9057
+ "type": "string",
9058
+ "description": "Continuation token from a prior response to fetch the next page."
9059
+ }
9060
+ },
9061
+ "required": [
9062
+ "connectionId",
9063
+ "query"
9064
+ ],
9065
+ "additionalProperties": false,
9066
+ "$schema": "http://json-schema.org/draft-07/schema#"
9067
+ },
9068
+ "outputSchema": {
9069
+ "type": "object",
9070
+ "properties": {
9071
+ "ok": {
9072
+ "type": "boolean"
9073
+ },
9074
+ "totalMatches": {
9075
+ "type": "number",
9076
+ "description": "Gmail's estimated total matches for the query, independent of how many were fetched this call."
9077
+ },
9078
+ "messagesFetched": {
9079
+ "type": "number"
9080
+ },
9081
+ "truncated": {
9082
+ "type": "boolean",
9083
+ "description": "True when totalMatches exceeds messagesFetched — more results exist, use nextPageToken."
9084
+ },
9085
+ "nextPageToken": {
9086
+ "type": [
9087
+ "string",
9088
+ "null"
9089
+ ]
9090
+ },
9091
+ "messages": {
9092
+ "type": "array",
9093
+ "items": {
9094
+ "type": "object",
9095
+ "properties": {
9096
+ "id": {
9097
+ "type": "string"
9098
+ },
9099
+ "date": {
9100
+ "$ref": "#/properties/nextPageToken"
9101
+ },
9102
+ "from": {
9103
+ "$ref": "#/properties/nextPageToken"
9104
+ },
9105
+ "to": {
9106
+ "$ref": "#/properties/nextPageToken"
9107
+ },
9108
+ "subject": {
9109
+ "$ref": "#/properties/nextPageToken"
9110
+ },
9111
+ "snippet": {
9112
+ "$ref": "#/properties/nextPageToken"
9113
+ }
9114
+ },
9115
+ "required": [
9116
+ "id",
9117
+ "date",
9118
+ "from",
9119
+ "to",
9120
+ "subject",
9121
+ "snippet"
9122
+ ],
9123
+ "additionalProperties": false
9124
+ }
9125
+ },
9126
+ "contacts": {
9127
+ "type": "array",
9128
+ "items": {
9129
+ "type": "object",
9130
+ "properties": {
9131
+ "email": {
9132
+ "type": "string"
9133
+ },
9134
+ "name": {
9135
+ "$ref": "#/properties/nextPageToken"
9136
+ },
9137
+ "domain": {
9138
+ "$ref": "#/properties/nextPageToken"
9139
+ },
9140
+ "messageCount": {
9141
+ "type": "number"
9142
+ },
9143
+ "firstSeen": {
9144
+ "$ref": "#/properties/nextPageToken"
9145
+ },
9146
+ "lastSeen": {
9147
+ "$ref": "#/properties/nextPageToken"
9148
+ },
9149
+ "sampleSubjects": {
9150
+ "type": "array",
9151
+ "items": {
9152
+ "type": "string"
9153
+ }
9154
+ }
9155
+ },
9156
+ "required": [
9157
+ "email",
9158
+ "name",
9159
+ "domain",
9160
+ "messageCount",
9161
+ "firstSeen",
9162
+ "lastSeen",
9163
+ "sampleSubjects"
9164
+ ],
9165
+ "additionalProperties": false
9166
+ },
9167
+ "description": "Messages deduped by sender email address, newest-to-oldest within this fetch only — not the full query result set when truncated."
9168
+ },
9169
+ "error": {
9170
+ "$ref": "#/properties/nextPageToken"
9171
+ }
9172
+ },
9173
+ "required": [
9174
+ "ok",
9175
+ "nextPageToken",
9176
+ "error"
9177
+ ],
9178
+ "additionalProperties": false,
9179
+ "$schema": "http://json-schema.org/draft-07/schema#"
9180
+ },
9181
+ "annotations": {
9182
+ "title": "Search Gmail Contacts",
9183
+ "readOnlyHint": true,
9184
+ "destructiveHint": false,
9185
+ "idempotentHint": true,
9186
+ "openWorldHint": true
9187
+ },
9188
+ "execution": {
9189
+ "taskSupport": "forbidden"
9190
+ }
9191
+ },
9030
9192
  {
9031
9193
  "name": "gmail_send_message",
9032
9194
  "title": "Send Gmail Message",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-scraper",
3
- "version": "0.32.2",
3
+ "version": "0.32.3",
4
4
  "description": "MCP server for MCP Scraper web intelligence tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",