netintel-mcp 1.1.2 → 1.1.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 +50 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -600,6 +600,56 @@ function registerTools(server, api) {
600
600
  return err(e);
601
601
  }
602
602
  });
603
+ // 57. Extract (POST)
604
+ server.tool("netintel_extract", "Parse and normalize a freeform address string using Claude Haiku — splits it into street, city, state/region, postal code, and country, plus a normalized single-line form, so agents can clean and standardize messy address data for…", { address: z.string() }, async ({ address }) => {
605
+ try {
606
+ const res = await api.post("/extract/address", { address });
607
+ return ok(res.data);
608
+ }
609
+ catch (e) {
610
+ return err(e);
611
+ }
612
+ });
613
+ // 58. Extract (POST)
614
+ server.tool("netintel_extract_contact", "Extract structured contact details from text, an email signature, or webpage text using Claude Haiku — returns name, title, company, email, phone, and address as clean JSON so agents can turn unstructured contact blocks into CRM-ready…", { text: z.string() }, async ({ text }) => {
615
+ try {
616
+ const res = await api.post("/extract/contact", { text });
617
+ return ok(res.data);
618
+ }
619
+ catch (e) {
620
+ return err(e);
621
+ }
622
+ });
623
+ // 59. Extract (POST)
624
+ server.tool("netintel_extract_invoice", "Extract structured data from invoice or receipt text using Claude Haiku — returns vendor, invoice number, dates, line items, subtotal, tax, total, and currency as clean JSON so agents can automate accounts-payable, expense processing, and…", { text: z.string() }, async ({ text }) => {
625
+ try {
626
+ const res = await api.post("/extract/invoice", { text });
627
+ return ok(res.data);
628
+ }
629
+ catch (e) {
630
+ return err(e);
631
+ }
632
+ });
633
+ // 60. Extract (POST)
634
+ server.tool("netintel_extract_resume", "Extract structured data from resume/CV text using Claude Haiku — returns name, contact info, skills, work experience, and education as clean JSON arrays so agents can automate applicant screening, candidate databases, and recruiting…", { text: z.string() }, async ({ text }) => {
635
+ try {
636
+ const res = await api.post("/extract/resume", { text });
637
+ return ok(res.data);
638
+ }
639
+ catch (e) {
640
+ return err(e);
641
+ }
642
+ });
643
+ // 61. Extract (POST)
644
+ server.tool("netintel_extract_table", "Extract tabular data from messy text or HTML using Claude Haiku — detects columns and rows in unstructured content and returns clean structured JSON (columns + rows) so agents can turn pasted tables, HTML tables, and delimited text into…", { text: z.string() }, async ({ text }) => {
645
+ try {
646
+ const res = await api.post("/extract/table", { text });
647
+ return ok(res.data);
648
+ }
649
+ catch (e) {
650
+ return err(e);
651
+ }
652
+ });
603
653
  }
604
654
  async function main() {
605
655
  const api = await createClient();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "netintel-mcp",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "mcpName": "io.github.kjgueye/netintel-mcp",
5
5
  "repository": {
6
6
  "type": "git",