@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.
Files changed (2) hide show
  1. package/dist/index.js +8 -8
  2. 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 (specific tickers) | INDUSTRY (SIC sector) | MACRO (cross-market)\n\n' +
423
- 'For canonical financial statements (income statement, balance sheet, cash flow), use etsquare_financial_statements.\n' +
424
- 'For custom financial queries or peer comparisons, use etsquare_discover_metrics + etsquare_execute_metrics.\n\n' +
425
- 'For INDUSTRY scope, use sector to target a specific industry (e.g., sector="semiconductors"). ' +
426
- 'Use tickers to scope to specific companies (resolve names first with etsquare_lookup_company). ' +
427
- 'Results include filing text plus safe citation metadata such as chunk_id, accession number, and SEC URL for follow-up retrieval.\n\n' +
428
- 'Set response_format="structured" for typed JSON with search_context, layout hints, and chart-ready data.',
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 for specific tickers, INDUSTRY for SIC sector-wide, MACRO for cross-market'),
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.2",
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",