{"name":"com.ainetcafe/netcafe-tables","slug":"ainetcafe-netcafe-tables","title":null,"description":"Messy spreadsheets in, clean checkable tables out. Every result carries its arithmetic proof.","url":"https://mcp.market/server/ainetcafe-netcafe-tables","rating":null,"grade":"B","score":76,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":21,"stars":1,"forks":0,"downloads_week":null,"last_push_at":"2026-08-16T06:53:22.000Z","license":null},"uptime":{"percent":100,"checks":21,"ok":21,"last_checked_at":"2026-09-24T11:51:13.065Z","last_ok_at":"2026-09-24T11:51:13.065Z","latency_ms":384},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/mario03690/ai-netcafe","website":"https://ainetcafe.com/duizhang","version":"1.0.0","remotes":[{"type":"streamable-http","url":"https://ainetcafe.com/mcp/table?s=registry"}],"packages":[],"tools":[{"name":"clean_table","description":"Tidies a spreadsheet export: removes duplicate rows, trims whitespace (half-width and full-width — Chinese exports are full of 　), unifies the half-dozen ways a cell can say \"empty\" (NA / null / - / 无), drops empty rows and columns, and can split one column into several. Returns the cleaned CSV plus exactly what changed: rows in, rows out, duplicates removed, cells trimmed per column. It can also transpose rows/columns and unpivot a wide table into a long one. The row arithmetic is verified in code — if in − removed ≠ out, the response says so instead of handing back a table nobody can check. Use when a CSV came out of Excel or an export and needs cleaning before analysis.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","description":"Link to the CSV. Provide this or text."},"text":{"type":"string","description":"The CSV content itself. Provide this or url."},"ops":{"type":"string","description":"Comma-separated, default \"dedupe,trim,drop_empty,unify_blank\". Also available: split_column, transpose (swap rows/columns), wide_to_long (unpivot a wide table into the long format analysis tools expect)."},"keep":{"type":"string","description":"For wide_to_long: comma-separated id columns to keep as-is. Defaults to the first column."},"split_column":{"type":"string","description":"Column name to split (requires ops to include split_column)."},"split_by":{"type":"string","description":"Separator to split on, default a single space."}}}},{"name":"csv_to_chart","description":"CSV (first column = labels, second = values) → chart PNG in one call.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"csv":{},"url":{},"type":{}},"additionalProperties":true}},{"name":"csv_to_json","description":"CSV (text or URL) → JSON array of objects (first row = keys). Returns a .json file.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"csv":{},"url":{}},"additionalProperties":true}},{"name":"csv_to_md_table","description":"CSV (text or URL) → GitHub-flavoured Markdown table.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"csv":{},"url":{}},"additionalProperties":true}},{"name":"csv_to_qbo","description":"Convert a transaction CSV into a .qbo / OFX bank-feed file that QuickBooks and similar accounting software import directly. Needs date, description and amount columns (or debit + credit). Pairs with extract_statement: statement PDF in, importable bank feed out.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"csv":{"type":"string","description":"CSV content with a header row."},"url":{"type":"string","description":"Or a link to the CSV."},"account_id":{"type":"string","description":"Your account number as the accounting software expects it."},"bank_id":{"type":"string","description":"Routing / bank identifier, if your import asks for one."},"currency":{"type":"string","description":"Three-letter currency code, default USD."}},"required":[]}},{"name":"dedupe_entities","description":"Find records in a supplier/customer/store list that are probably the SAME entity under different names — \"北京星辰科技有限公司\" vs \"星辰科技(北京)\" — by cross-checking name similarity against hard identifiers: tax ID (统一社会信用代码, checksum-verified), phone, domain, bank account, address. It never merges anything: it returns candidate groups with the evidence for each link, pairs that need human review, and — just as","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{},"text":{},"sheet":{},"name":{},"tax_id":{},"phone":{},"domain":{},"address":{},"bank":{},"name_threshold":{}},"additionalProperties":true}},{"name":"diff_tables","description":"Matches rows across two CSVs on a key column and reports three things: keys only in A, keys only in B, and keys in both whose other columns disagree — naming the exact column and both values. Unlike reconcile_ledger this needs no amount column, so it also fits name lists, inventory counts, permission tables, and any \"these two exports should match\" check.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url_a":{"type":"string","description":"Link to the first CSV."},"url_b":{"type":"string","description":"Link to the second CSV."},"text_a":{"type":"string","description":"Or the first CSV content directly."},"text_b":{"type":"string","description":"Or the second CSV content directly."},"key":{"type":"string","description":"Column that identifies a row, e.g. id."}},"required":["key"]}},{"name":"fix_csv_encoding","description":"Detect the real encoding of a CSV (GB18030, Shift-JIS, Windows-1252…), repair mojibake (UTF-8 that was read as Latin-1, e.g. \"Ã©\"), and re-emit UTF-8 with a BOM so Excel opens it correctly.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{"type":"string","description":"Public URL of the CSV."},"text":{"type":"string","description":"Or paste the CSV content directly."}},"required":[]}},{"name":"json_to_csv","description":"JSON array of objects → CSV file. Flattens keys, quotes fields containing commas.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"json":{}},"additionalProperties":true}},{"name":"match_transactions","description":"Match bank statement lines to ledger/invoice entries when there is NO shared key — by amount, date window, reference numbers found inside free-text descriptions, and fuzzy counterparty names (\"北京XX科技\" vs \"XX科技(北京)\"). Handles split payments (one invoice paid in instalments, 1:N) and combined payments (one transfer covering several invoices, N:1). Its rule is: never guess — a pair is only auto-match","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url_a":{},"text_a":{},"url_b":{},"text_b":{},"sheet_a":{},"sheet_b":{},"date_window_days":{},"fee_tolerance":{},"max_group_size":{}},"additionalProperties":true}},{"name":"merge_tables","description":"Combines up to 20 CSVs into a single table. Headers do not have to match: columns are unioned and a file missing a column contributes blanks for it, so rows never shift silently — the failure mode that makes hand-merged spreadsheets untrustworthy. Reports each source file row count and checks in code that they sum to the merged total. Use for monthly exports, per-store sheets, or any set of files with the same subject but drifting headers.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"urls":{"type":"string","description":"Comma-separated CSV links, at least two."},"texts":{"type":"array","items":{"type":"string"},"description":"Or pass the CSV contents directly as an array."}}}},{"name":"read_xlsx","description":"Read an Excel .xlsx workbook (by URL) into rows — every sheet, or one you name. Returns cell values (not formula text), dates as YYYY-MM-DD instead of Excel serial numbers, and keeps leading zeros so ID/postcode columns are not silently mangled. Says plainly which sheet it used, which sheets are hidden, and where merged cells left blanks, instead of guessing for you.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url":{},"sheet":{},"keep_formulas":{},"max_rows":{},"inline":{},"preview_rows":{"type":"number"}},"additionalProperties":true}},{"name":"reconcile_ledger","description":"Reconciles two sets of records — your books against a bank, platform, or supplier statement. Matches rows on a key column, compares an amount column, and returns three lists: only in A, only in B, and same key but different amount. Amounts are compared in integer cents, so 0.1 + 0.2 never invents a phantom difference for someone to chase. The response also proves the result: the listed differences are re-added and must equal the gap between the two totals, checked in code. Use for month-end close, platform payouts vs orders, or any \"these two numbers should agree and do not\" problem. This is the job people do by hand with VLOOKUP or a groupby and then cannot prove they got right.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"url_a":{"type":"string","description":"Link to side A (e.g. your books)."},"url_b":{"type":"string","description":"Link to side B (e.g. the statement)."},"text_a":{"type":"string","description":"Or the CSV content of side A directly."},"text_b":{"type":"string","description":"Or the CSV content of side B directly."},"key":{"type":"string","description":"Column name to match rows on, e.g. order_id."},"amount":{"type":"string","description":"Numeric column to compare, e.g. amount."}},"required":["key","amount"]}},{"name":"what_can_you_do","description":"Describe a task in plain language (any language) and get back exactly which tools on this server do it, with ready-to-run example calls — instead of reading the whole catalogue and guessing. Also returns multi-step recipes when a task needs several tools chained (invoices to a ledger, a bank statement reconciled, a messy CSV turned into a deliverable). Deterministic and free: it calls no model, costs nothing, and never runs out of quota. Call this FIRST when you are not sure what this server offers.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"task":{"type":"string","description":"What you are trying to do, e.g. \"reconcile a bank statement against my books\" or \"把一堆发票整理成能入账的表格\""}},"required":["task"]}},{"name":"write_xlsx","description":"Build an Excel .xlsx file from rows (CSV text or JSON arrays), optionally several sheets at once. Numbers are written as real numbers so they sum in Excel, while values with leading zeros stay text so IDs and postcodes survive the round trip.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"sheets":{},"url":{},"text":{},"sheet_name":{}},"additionalProperties":true}}],"scan":{"score":76,"grade":"B","scanned_at":"2026-09-23T11:53:31.825Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-23T11:53:31.689Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 1376ms"]},"poisoning":{"score":15,"max":15,"notes":["15 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":12,"max":15,"notes":["last push 38 days ago"]},"identity":{"score":7,"max":10,"notes":["namespace and repository owner differ","GitHub account older than a year","website matches verified namespace"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://ainetcafe.com/mcp/table?s=registry","reachable":true,"authRequired":false,"latencyMs":1376,"serverInfo":{"name":"netcafe-tables","version":"1.5.0"}}],"packages":[],"repo":{"found":true,"owner":"mario03690","repo":"ai-netcafe","archived":false,"pushedAt":"2026-08-16T06:53:22Z","stars":1,"forks":0,"openIssues":1,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/79393843?v=4","ownerCreatedAt":"2021-02-21T06:22:05Z"},"icon":{"url":null,"source":"none"},"presence":{"stars":1,"forks":0,"downloadsWeek":null,"license":null,"lastPushAt":"2026-08-16T06:53:22.000Z","score":21}}}},"grade_history":[],"reviews":[]}