@snokam/mcp-api 0.73.4 → 0.73.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snokam/mcp-api",
3
- "version": "0.73.4",
3
+ "version": "0.73.6",
4
4
  "description": "MCP server exposing Snokam backend APIs as tools for Claude Code and other MCP clients",
5
5
  "type": "module",
6
6
  "bin": {
@@ -591,6 +591,16 @@
591
591
  ],
592
592
  "summary": "Create or update a crawl source",
593
593
  "operationId": "UpsertCrawlSource",
594
+ "parameters": [
595
+ {
596
+ "name": "name",
597
+ "in": "path",
598
+ "required": true,
599
+ "schema": {
600
+ "type": "string"
601
+ }
602
+ }
603
+ ],
594
604
  "requestBody": {
595
605
  "content": {
596
606
  "application/json": {
@@ -629,6 +639,16 @@
629
639
  ],
630
640
  "summary": "Delete a crawl source and its cached pattern",
631
641
  "operationId": "DeleteCrawlSource",
642
+ "parameters": [
643
+ {
644
+ "name": "name",
645
+ "in": "path",
646
+ "required": true,
647
+ "schema": {
648
+ "type": "string"
649
+ }
650
+ }
651
+ ],
632
652
  "responses": {
633
653
  "204": {
634
654
  "description": "No description"
@@ -650,6 +670,16 @@
650
670
  ],
651
671
  "summary": "Drop the cached URL pattern for a source so the next scan re-bootstraps it",
652
672
  "operationId": "InvalidateCrawlPattern",
673
+ "parameters": [
674
+ {
675
+ "name": "name",
676
+ "in": "path",
677
+ "required": true,
678
+ "schema": {
679
+ "type": "string"
680
+ }
681
+ }
682
+ ],
653
683
  "responses": {
654
684
  "204": {
655
685
  "description": "No description"
@@ -708,6 +738,16 @@
708
738
  ],
709
739
  "summary": "Scan one source now and enqueue ingestion jobs for newly discovered notices",
710
740
  "operationId": "ScanCrawlSource",
741
+ "parameters": [
742
+ {
743
+ "name": "name",
744
+ "in": "path",
745
+ "required": true,
746
+ "schema": {
747
+ "type": "string"
748
+ }
749
+ }
750
+ ],
711
751
  "responses": {
712
752
  "200": {
713
753
  "description": "Payload of CrawlScanResponse",
@@ -739,6 +779,16 @@
739
779
  ],
740
780
  "summary": "Delete all tenders for this source whose ingestion failed (parse-failed / zero confidence)",
741
781
  "operationId": "DeleteFailedTenders",
782
+ "parameters": [
783
+ {
784
+ "name": "name",
785
+ "in": "path",
786
+ "required": true,
787
+ "schema": {
788
+ "type": "string"
789
+ }
790
+ }
791
+ ],
742
792
  "responses": {
743
793
  "200": {
744
794
  "description": "Payload of DeleteFailedTendersResponse",
@@ -898,6 +948,16 @@
898
948
  ],
899
949
  "summary": "Delete the tender (if any) and enqueue a fresh ingestion for the same URL/title/externalId",
900
950
  "operationId": "RetryCrawlJob",
951
+ "parameters": [
952
+ {
953
+ "name": "jobId",
954
+ "in": "path",
955
+ "required": true,
956
+ "schema": {
957
+ "type": "string"
958
+ }
959
+ }
960
+ ],
901
961
  "responses": {
902
962
  "200": {
903
963
  "description": "Payload of AgentJob",
@@ -932,6 +992,16 @@
932
992
  ],
933
993
  "summary": "Terminate the running orchestration and mark the job as failed (\"Cancelled by operator\")",
934
994
  "operationId": "CancelCrawlJob",
995
+ "parameters": [
996
+ {
997
+ "name": "jobId",
998
+ "in": "path",
999
+ "required": true,
1000
+ "schema": {
1001
+ "type": "string"
1002
+ }
1003
+ }
1004
+ ],
935
1005
  "responses": {
936
1006
  "200": {
937
1007
  "description": "Payload of AgentJob",
@@ -1007,6 +1077,14 @@
1007
1077
  "summary": "Recent ingestion jobs for this source, newest first",
1008
1078
  "operationId": "ListCrawlJobs",
1009
1079
  "parameters": [
1080
+ {
1081
+ "name": "name",
1082
+ "in": "path",
1083
+ "required": true,
1084
+ "schema": {
1085
+ "type": "string"
1086
+ }
1087
+ },
1010
1088
  {
1011
1089
  "name": "limit",
1012
1090
  "in": "query",
@@ -1047,6 +1125,16 @@
1047
1125
  ],
1048
1126
  "summary": "Run a one-off discovery crawl for a single source and return the notices it would enqueue (no ingestion)",
1049
1127
  "operationId": "PreviewCrawlSource",
1128
+ "parameters": [
1129
+ {
1130
+ "name": "name",
1131
+ "in": "path",
1132
+ "required": true,
1133
+ "schema": {
1134
+ "type": "string"
1135
+ }
1136
+ }
1137
+ ],
1050
1138
  "responses": {
1051
1139
  "200": {
1052
1140
  "description": "Payload of CrawlPreviewResponse",
@@ -591,6 +591,16 @@
591
591
  ],
592
592
  "summary": "Create or update a crawl source",
593
593
  "operationId": "UpsertCrawlSource",
594
+ "parameters": [
595
+ {
596
+ "name": "name",
597
+ "in": "path",
598
+ "required": true,
599
+ "schema": {
600
+ "type": "string"
601
+ }
602
+ }
603
+ ],
594
604
  "requestBody": {
595
605
  "content": {
596
606
  "application/json": {
@@ -629,6 +639,16 @@
629
639
  ],
630
640
  "summary": "Delete a crawl source and its cached pattern",
631
641
  "operationId": "DeleteCrawlSource",
642
+ "parameters": [
643
+ {
644
+ "name": "name",
645
+ "in": "path",
646
+ "required": true,
647
+ "schema": {
648
+ "type": "string"
649
+ }
650
+ }
651
+ ],
632
652
  "responses": {
633
653
  "204": {
634
654
  "description": "No description"
@@ -650,6 +670,16 @@
650
670
  ],
651
671
  "summary": "Drop the cached URL pattern for a source so the next scan re-bootstraps it",
652
672
  "operationId": "InvalidateCrawlPattern",
673
+ "parameters": [
674
+ {
675
+ "name": "name",
676
+ "in": "path",
677
+ "required": true,
678
+ "schema": {
679
+ "type": "string"
680
+ }
681
+ }
682
+ ],
653
683
  "responses": {
654
684
  "204": {
655
685
  "description": "No description"
@@ -708,6 +738,16 @@
708
738
  ],
709
739
  "summary": "Scan one source now and enqueue ingestion jobs for newly discovered notices",
710
740
  "operationId": "ScanCrawlSource",
741
+ "parameters": [
742
+ {
743
+ "name": "name",
744
+ "in": "path",
745
+ "required": true,
746
+ "schema": {
747
+ "type": "string"
748
+ }
749
+ }
750
+ ],
711
751
  "responses": {
712
752
  "200": {
713
753
  "description": "Payload of CrawlScanResponse",
@@ -739,6 +779,16 @@
739
779
  ],
740
780
  "summary": "Delete all tenders for this source whose ingestion failed (parse-failed / zero confidence)",
741
781
  "operationId": "DeleteFailedTenders",
782
+ "parameters": [
783
+ {
784
+ "name": "name",
785
+ "in": "path",
786
+ "required": true,
787
+ "schema": {
788
+ "type": "string"
789
+ }
790
+ }
791
+ ],
742
792
  "responses": {
743
793
  "200": {
744
794
  "description": "Payload of DeleteFailedTendersResponse",
@@ -898,6 +948,16 @@
898
948
  ],
899
949
  "summary": "Delete the tender (if any) and enqueue a fresh ingestion for the same URL/title/externalId",
900
950
  "operationId": "RetryCrawlJob",
951
+ "parameters": [
952
+ {
953
+ "name": "jobId",
954
+ "in": "path",
955
+ "required": true,
956
+ "schema": {
957
+ "type": "string"
958
+ }
959
+ }
960
+ ],
901
961
  "responses": {
902
962
  "200": {
903
963
  "description": "Payload of AgentJob",
@@ -932,6 +992,16 @@
932
992
  ],
933
993
  "summary": "Terminate the running orchestration and mark the job as failed (\"Cancelled by operator\")",
934
994
  "operationId": "CancelCrawlJob",
995
+ "parameters": [
996
+ {
997
+ "name": "jobId",
998
+ "in": "path",
999
+ "required": true,
1000
+ "schema": {
1001
+ "type": "string"
1002
+ }
1003
+ }
1004
+ ],
935
1005
  "responses": {
936
1006
  "200": {
937
1007
  "description": "Payload of AgentJob",
@@ -1007,6 +1077,14 @@
1007
1077
  "summary": "Recent ingestion jobs for this source, newest first",
1008
1078
  "operationId": "ListCrawlJobs",
1009
1079
  "parameters": [
1080
+ {
1081
+ "name": "name",
1082
+ "in": "path",
1083
+ "required": true,
1084
+ "schema": {
1085
+ "type": "string"
1086
+ }
1087
+ },
1010
1088
  {
1011
1089
  "name": "limit",
1012
1090
  "in": "query",
@@ -1047,6 +1125,16 @@
1047
1125
  ],
1048
1126
  "summary": "Run a one-off discovery crawl for a single source and return the notices it would enqueue (no ingestion)",
1049
1127
  "operationId": "PreviewCrawlSource",
1128
+ "parameters": [
1129
+ {
1130
+ "name": "name",
1131
+ "in": "path",
1132
+ "required": true,
1133
+ "schema": {
1134
+ "type": "string"
1135
+ }
1136
+ }
1137
+ ],
1050
1138
  "responses": {
1051
1139
  "200": {
1052
1140
  "description": "Payload of CrawlPreviewResponse",