@etsquare/mcp-server-sec 0.6.2 → 0.6.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.
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -419,17 +419,17 @@ server.registerTool('etsquare_search', {
|
|
|
419
419
|
'Returns verbatim filing text with citations — best for qualitative research.\n\n' +
|
|
420
420
|
'Execution contract (required):\n' +
|
|
421
421
|
'- mode_lock: NARRATIVE (recommended) | HYBRID\n' +
|
|
422
|
-
'- scope_lock: COMPANY
|
|
423
|
-
'
|
|
424
|
-
'
|
|
425
|
-
'For
|
|
426
|
-
'
|
|
427
|
-
'Results include filing text
|
|
428
|
-
'Set response_format="structured" for typed JSON
|
|
422
|
+
'- scope_lock: COMPANY | INDUSTRY | MACRO\n\n' +
|
|
423
|
+
'COMPANY + tickers = precision. INDUSTRY + sector = breadth. ' +
|
|
424
|
+
'When precision matters, supply tickers.\n\n' +
|
|
425
|
+
'For financial statements, use etsquare_financial_statements. ' +
|
|
426
|
+
'For metrics/comparisons, use etsquare_discover_metrics + etsquare_execute_metrics.\n\n' +
|
|
427
|
+
'Results include filing text, chunk_id, accession number, and SEC URL.\n' +
|
|
428
|
+
'Set response_format="structured" for typed JSON.',
|
|
429
429
|
inputSchema: {
|
|
430
430
|
query: z.string().min(3).describe('What to search for in SEC filings (e.g., "customer concentration risk", "Show NVDA revenue trend")'),
|
|
431
431
|
mode_lock: z.enum(['NARRATIVE', 'HYBRID']).describe('NARRATIVE for text search, HYBRID for text + any available metrics'),
|
|
432
|
-
scope_lock: z.enum(['COMPANY', 'INDUSTRY', 'MACRO']).describe('COMPANY
|
|
432
|
+
scope_lock: z.enum(['COMPANY', 'INDUSTRY', 'MACRO']).describe('COMPANY = specific tickers (precision). INDUSTRY = sector-wide (breadth). MACRO = cross-market.'),
|
|
433
433
|
top_k: z.number().min(1).max(50).default(5).describe('Number of results to return (default: 5)'),
|
|
434
434
|
tickers: z.array(z.string()).optional().describe('Limit to specific companies by ticker (e.g., ["AAPL", "MSFT"])'),
|
|
435
435
|
doc_types: z.array(z.string()).optional().describe('Limit by SEC form type: "10-k", "10-q", "8-k"'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsquare/mcp-server-sec",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "MCP server for Claude Desktop: search SEC filing sections, financial statements, insider trades, institutional ownership, earnings actuals, XBRL metrics, and company lookup.",
|
|
6
6
|
"main": "dist/index.js",
|