mcp-sequential-research 1.1.0 → 1.1.1

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.
@@ -142,10 +142,36 @@ For each query where `query_family == "patent"`:
142
142
  {
143
143
  "tool": "google-patents:search_patents",
144
144
  "arguments": {
145
- "query": "photonic neural network accelerator",
146
- "num_results": 10,
145
+ "q": "photonic neural network accelerator",
146
+ "num": 10,
147
147
  "country": "US",
148
- "after": "2020-01-01"
148
+ "after": "publication:20200101",
149
+ "sort": "new"
150
+ }
151
+ }
152
+ ```
153
+
154
+ **IMPORTANT:** Always specify `sort: "new"` or `sort: "old"`. The default `sort: "relevance"` is NOT supported by SerpApi and will cause an error.
155
+
156
+ **Parameter notes:**
157
+ - `q` - Search query (required). Use semicolons to separate terms: `"(photonic) OR (optical);neural network"`
158
+ - `num` - Results per page (10-100, default: 10)
159
+ - `country` - Filter by country codes: `"US"`, `"US,WO,EP"`
160
+ - `after` - Date filter format: `"publication:YYYYMMDD"` or `"filing:YYYYMMDD"`
161
+ - `before` - Date filter format: `"publication:YYYYMMDD"` or `"filing:YYYYMMDD"`
162
+ - `status` - Filter: `"GRANT"` or `"APPLICATION"`
163
+ - `sort` - **Must be `"new"` or `"old"`** (NOT `"relevance"`)
164
+
165
+ ```json
166
+ // CORRECT - explicit sort parameter
167
+ {
168
+ "tool": "google-patents:search_patents",
169
+ "arguments": {
170
+ "q": "(optical computing) AND (neural network)",
171
+ "num": 10,
172
+ "country": "US,WO",
173
+ "after": "publication:20180101",
174
+ "sort": "new"
149
175
  }
150
176
  }
151
177
  ```
@@ -119,15 +119,18 @@ Execute queries using appropriate MCP tools. Here's how each query maps to data
119
119
  "params": {
120
120
  "name": "search_patents",
121
121
  "arguments": {
122
- "query": "photonic computing neural network inference",
123
- "num_results": 5,
122
+ "q": "photonic computing neural network inference",
123
+ "num": 10,
124
124
  "country": "US",
125
- "after": "2020-01-01"
125
+ "after": "publication:20200101",
126
+ "sort": "new"
126
127
  }
127
128
  }
128
129
  }
129
130
  ```
130
131
 
132
+ **IMPORTANT:** Always use `sort: "new"` or `sort: "old"`. The default `sort: "relevance"` is NOT supported by SerpApi and will cause an error.
133
+
131
134
  ### Example: Query q1 via Google Search MCP
132
135
 
133
136
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-sequential-research",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "MCP server for sequential research planning and compilation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",