mcp-scraper 0.15.0 → 0.16.0
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 +7 -5
- package/dist/bin/api-server.cjs +278 -20
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/mcp-scraper-cli.cjs +1 -1
- package/dist/bin/mcp-scraper-cli.cjs.map +1 -1
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-install.cjs +1 -1
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +42 -10
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-HQYIP5X3.js +7 -0
- package/dist/chunk-HQYIP5X3.js.map +1 -0
- package/dist/{chunk-ETJBTYZX.js → chunk-YIV4IKFG.js} +43 -11
- package/dist/chunk-YIV4IKFG.js.map +1 -0
- package/dist/{server-DDKXWYTO.js → server-QEXOVJPR.js} +238 -12
- package/dist/server-QEXOVJPR.js.map +1 -0
- package/docs/mcp-tool-manifest.generated.json +162 -6
- package/docs/specs/google-drive-bulk-access-and-mcp-schema-passthrough-spec.md +1680 -0
- package/package.json +1 -1
- package/dist/chunk-ETJBTYZX.js.map +0 -1
- package/dist/chunk-TK2S2M7G.js +0 -7
- package/dist/chunk-TK2S2M7G.js.map +0 -1
- package/dist/server-DDKXWYTO.js.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-07-
|
|
2
|
+
"generatedAt": "2026-07-12T18:46:14.399Z",
|
|
3
3
|
"generatedFrom": "dist/bin/mcp-stdio-server.js",
|
|
4
4
|
"serverInfo": {
|
|
5
5
|
"name": "mcp-scraper",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.16.0"
|
|
7
7
|
},
|
|
8
8
|
"counts": {
|
|
9
9
|
"unified_stdio": 156
|
|
@@ -4173,7 +4173,7 @@
|
|
|
4173
4173
|
{
|
|
4174
4174
|
"name": "call_service_connection_action",
|
|
4175
4175
|
"title": "Run Connected Service Action",
|
|
4176
|
-
"description": "Run one explicitly allowlisted write or mutation on a tenant-owned OAuth or remote MCP connection. First call list_service_connections, use a connection with actionsEnabled true,
|
|
4176
|
+
"description": "Run one explicitly allowlisted write or mutation on a tenant-owned OAuth or remote MCP connection. First call list_service_connections, use a connection with actionsEnabled true, describe the exact actionTools entry to obtain its live schema, and supply only that action's arguments. The server rejects arbitrary action names, inactive or foreign connections, disabled actions, and every adminBlockedTools entry. This can include Google Drive folder creation or file copies, Resend delivery, and GitHub mutations only when those exact actions are live and approved. Sends, deletes, merges, workflow execution, and content changes are high impact.",
|
|
4177
4177
|
"inputSchema": {
|
|
4178
4178
|
"type": "object",
|
|
4179
4179
|
"properties": {
|
|
@@ -5445,7 +5445,7 @@
|
|
|
5445
5445
|
{
|
|
5446
5446
|
"name": "describe_service_connection_tool",
|
|
5447
5447
|
"title": "Describe Connected Service Tool",
|
|
5448
|
-
"description": "
|
|
5448
|
+
"description": "Fetch the sanitized live MCP Tool definition for one exact tool exposed by a tenant-owned Nango OAuth or official remote MCP connection. Returns provider-native title, description, read/action classification, current callability, input schema, optional output schema, safe annotations, and a schema hash. Call list_service_connections first, then describe a listed readTools or actionTools name before constructing arguments. This is a compatibility tool on MCP Scraper's fixed root MCP; protocol-native connection endpoints discover the same definitions through MCP tools/list, not a custom tools/describe method. Arbitrary names and permanently blocked administrative tools are rejected.",
|
|
5449
5449
|
"inputSchema": {
|
|
5450
5450
|
"type": "object",
|
|
5451
5451
|
"properties": {
|
|
@@ -5458,6 +5458,10 @@
|
|
|
5458
5458
|
"type": "string",
|
|
5459
5459
|
"minLength": 1,
|
|
5460
5460
|
"description": "One exact name from that connection's readTools or actionTools. Admin-blocked and arbitrary names are rejected."
|
|
5461
|
+
},
|
|
5462
|
+
"fresh": {
|
|
5463
|
+
"type": "boolean",
|
|
5464
|
+
"description": "Bypass the short-lived sanitized schema cache. Ownership, connection state, and tool policy are still rechecked; use only when a provider tool catalog just changed."
|
|
5461
5465
|
}
|
|
5462
5466
|
},
|
|
5463
5467
|
"required": [
|
|
@@ -5495,10 +5499,126 @@
|
|
|
5495
5499
|
"action"
|
|
5496
5500
|
]
|
|
5497
5501
|
},
|
|
5502
|
+
"callable": {
|
|
5503
|
+
"type": "boolean",
|
|
5504
|
+
"description": "Whether the tool is callable now. A gated action can be described while actions are off and return false."
|
|
5505
|
+
},
|
|
5506
|
+
"blockedReason": {
|
|
5507
|
+
"anyOf": [
|
|
5508
|
+
{
|
|
5509
|
+
"type": "string",
|
|
5510
|
+
"enum": [
|
|
5511
|
+
"actions_disabled",
|
|
5512
|
+
"inactive_connection"
|
|
5513
|
+
]
|
|
5514
|
+
},
|
|
5515
|
+
{
|
|
5516
|
+
"type": "null"
|
|
5517
|
+
}
|
|
5518
|
+
]
|
|
5519
|
+
},
|
|
5520
|
+
"transport": {
|
|
5521
|
+
"type": "string",
|
|
5522
|
+
"enum": [
|
|
5523
|
+
"nango",
|
|
5524
|
+
"remote_mcp"
|
|
5525
|
+
]
|
|
5526
|
+
},
|
|
5527
|
+
"providerConfigKey": {
|
|
5528
|
+
"type": "string"
|
|
5529
|
+
},
|
|
5530
|
+
"protocolVersion": {
|
|
5531
|
+
"$ref": "#/properties/tool/properties/title"
|
|
5532
|
+
},
|
|
5533
|
+
"schemaSource": {
|
|
5534
|
+
"type": "string",
|
|
5535
|
+
"const": "live_tools_list"
|
|
5536
|
+
},
|
|
5498
5537
|
"inputSchema": {
|
|
5499
5538
|
"type": "object",
|
|
5500
5539
|
"additionalProperties": {},
|
|
5501
5540
|
"description": "JSON Schema for the exact connected-provider tool arguments."
|
|
5541
|
+
},
|
|
5542
|
+
"outputSchema": {
|
|
5543
|
+
"type": "object",
|
|
5544
|
+
"additionalProperties": {},
|
|
5545
|
+
"description": "Provider-native JSON output schema when the live MCP tool publishes one."
|
|
5546
|
+
},
|
|
5547
|
+
"annotations": {
|
|
5548
|
+
"type": "object",
|
|
5549
|
+
"properties": {
|
|
5550
|
+
"title": {
|
|
5551
|
+
"type": "string"
|
|
5552
|
+
},
|
|
5553
|
+
"readOnlyHint": {
|
|
5554
|
+
"type": "boolean"
|
|
5555
|
+
},
|
|
5556
|
+
"destructiveHint": {
|
|
5557
|
+
"type": "boolean"
|
|
5558
|
+
},
|
|
5559
|
+
"idempotentHint": {
|
|
5560
|
+
"type": "boolean"
|
|
5561
|
+
},
|
|
5562
|
+
"openWorldHint": {
|
|
5563
|
+
"type": "boolean"
|
|
5564
|
+
}
|
|
5565
|
+
},
|
|
5566
|
+
"additionalProperties": false
|
|
5567
|
+
},
|
|
5568
|
+
"icons": {
|
|
5569
|
+
"type": "array",
|
|
5570
|
+
"items": {
|
|
5571
|
+
"type": "object",
|
|
5572
|
+
"properties": {
|
|
5573
|
+
"src": {
|
|
5574
|
+
"type": "string"
|
|
5575
|
+
},
|
|
5576
|
+
"mimeType": {
|
|
5577
|
+
"type": "string"
|
|
5578
|
+
},
|
|
5579
|
+
"sizes": {
|
|
5580
|
+
"type": "array",
|
|
5581
|
+
"items": {
|
|
5582
|
+
"type": "string"
|
|
5583
|
+
}
|
|
5584
|
+
},
|
|
5585
|
+
"theme": {
|
|
5586
|
+
"type": "string",
|
|
5587
|
+
"enum": [
|
|
5588
|
+
"light",
|
|
5589
|
+
"dark"
|
|
5590
|
+
]
|
|
5591
|
+
}
|
|
5592
|
+
},
|
|
5593
|
+
"required": [
|
|
5594
|
+
"src"
|
|
5595
|
+
],
|
|
5596
|
+
"additionalProperties": false
|
|
5597
|
+
}
|
|
5598
|
+
},
|
|
5599
|
+
"execution": {
|
|
5600
|
+
"type": "object",
|
|
5601
|
+
"properties": {
|
|
5602
|
+
"taskSupport": {
|
|
5603
|
+
"type": "string",
|
|
5604
|
+
"enum": [
|
|
5605
|
+
"forbidden",
|
|
5606
|
+
"optional",
|
|
5607
|
+
"required"
|
|
5608
|
+
]
|
|
5609
|
+
}
|
|
5610
|
+
},
|
|
5611
|
+
"required": [
|
|
5612
|
+
"taskSupport"
|
|
5613
|
+
],
|
|
5614
|
+
"additionalProperties": false
|
|
5615
|
+
},
|
|
5616
|
+
"schemaHash": {
|
|
5617
|
+
"type": "string",
|
|
5618
|
+
"description": "SHA-256 of the sanitized live Tool definition."
|
|
5619
|
+
},
|
|
5620
|
+
"fetchedAt": {
|
|
5621
|
+
"type": "string"
|
|
5502
5622
|
}
|
|
5503
5623
|
},
|
|
5504
5624
|
"required": [
|
|
@@ -5510,6 +5630,12 @@
|
|
|
5510
5630
|
],
|
|
5511
5631
|
"additionalProperties": false
|
|
5512
5632
|
},
|
|
5633
|
+
"retryable": {
|
|
5634
|
+
"type": "boolean"
|
|
5635
|
+
},
|
|
5636
|
+
"errorCode": {
|
|
5637
|
+
"type": "string"
|
|
5638
|
+
},
|
|
5513
5639
|
"error": {
|
|
5514
5640
|
"$ref": "#/properties/tool/properties/title"
|
|
5515
5641
|
}
|
|
@@ -9703,7 +9829,7 @@
|
|
|
9703
9829
|
{
|
|
9704
9830
|
"name": "list_service_connections",
|
|
9705
9831
|
"title": "List Connected Services",
|
|
9706
|
-
"description": "List every third-party service connection this MCP Scraper account has authorized, including Resend, GitHub, Google Analytics, YouTube, Facebook Pages, LinkedIn, X, Meta Marketing, Slack, Gmail, Calendar, Drive, Zoom, Xero, and others. Returns the tenant-scoped connectionId, credential transport, exact readTools and actionTools,
|
|
9832
|
+
"description": "List every third-party service connection this MCP Scraper account has authorized, including Resend, GitHub, Google Analytics, YouTube, Facebook Pages, LinkedIn, X, Meta Marketing, Slack, Gmail, Calendar, Google Drive, Zoom, Xero, and others. Returns the tenant-scoped connectionId, credential transport, exact live readTools and gated actionTools, permanently blocked administrative tools, and schema-discovery metadata. Get a connectionId and exact tool name here before calling describe_service_connection_tool, read_service_connection, or call_service_connection_action. Nango OAuth and official remote MCP connections use the same provider-neutral bridges; mutations still require the account action switch and an exact allowed action. For already-digested history, prefer the returned vaultName or tableName.",
|
|
9707
9833
|
"inputSchema": {
|
|
9708
9834
|
"type": "object",
|
|
9709
9835
|
"properties": {},
|
|
@@ -9770,6 +9896,33 @@
|
|
|
9770
9896
|
},
|
|
9771
9897
|
"description": "Credential, OAuth-grant, or other administrative tools permanently blocked from the MCP and scheduler."
|
|
9772
9898
|
},
|
|
9899
|
+
"mcpEndpoint": {
|
|
9900
|
+
"anyOf": [
|
|
9901
|
+
{
|
|
9902
|
+
"type": "string",
|
|
9903
|
+
"format": "uri"
|
|
9904
|
+
},
|
|
9905
|
+
{
|
|
9906
|
+
"type": "null"
|
|
9907
|
+
}
|
|
9908
|
+
],
|
|
9909
|
+
"description": "Authenticated connection-scoped MCP endpoint when native provider tools/list projection is available. Null means use describe_service_connection_tool on this root MCP."
|
|
9910
|
+
},
|
|
9911
|
+
"schemaDiscovery": {
|
|
9912
|
+
"type": "string",
|
|
9913
|
+
"enum": [
|
|
9914
|
+
"connection_tools_list",
|
|
9915
|
+
"compatibility_describe"
|
|
9916
|
+
],
|
|
9917
|
+
"description": "How clients discover this connection's exact live provider schemas."
|
|
9918
|
+
},
|
|
9919
|
+
"toolRevision": {
|
|
9920
|
+
"type": [
|
|
9921
|
+
"string",
|
|
9922
|
+
"null"
|
|
9923
|
+
],
|
|
9924
|
+
"description": "Opaque revision of the resolved live tool catalog, when available. It changes when provider tools or policy change."
|
|
9925
|
+
},
|
|
9773
9926
|
"vaultName": {
|
|
9774
9927
|
"type": [
|
|
9775
9928
|
"string",
|
|
@@ -9795,6 +9948,9 @@
|
|
|
9795
9948
|
"readTools",
|
|
9796
9949
|
"actionTools",
|
|
9797
9950
|
"adminBlockedTools",
|
|
9951
|
+
"mcpEndpoint",
|
|
9952
|
+
"schemaDiscovery",
|
|
9953
|
+
"toolRevision",
|
|
9798
9954
|
"vaultName",
|
|
9799
9955
|
"tableName"
|
|
9800
9956
|
],
|
|
@@ -14335,7 +14491,7 @@
|
|
|
14335
14491
|
{
|
|
14336
14492
|
"name": "read_service_connection",
|
|
14337
14493
|
"title": "Read Connected Service",
|
|
14338
|
-
"description": "Call one small live, read-only operation on any connected service, including Resend, GitHub
|
|
14494
|
+
"description": "Call one small live, read-only operation on any connected service, including Google Drive metadata/search tools, Resend, GitHub, Gmail, Calendar, Zoom, and other approved providers. Call describe_service_connection_tool first when arguments are not already known. Do not loop this tool once per file or record to fetch a corpus: use export_connected_service_data when that provider/dataset supports bulk delivery. Requires a connectionId and an exact name from that connection's live readTools in list_service_connections; an unlisted tool is rejected server-side.",
|
|
14339
14495
|
"inputSchema": {
|
|
14340
14496
|
"type": "object",
|
|
14341
14497
|
"properties": {
|