ProjectThunder

ERP and B2B ecommerce rollout research: ERP fit, migration plans, site scans, ERP partner directory.

Should I use this

Quality & Safety

A
Description quality
100%
Schema completeness
95%
Naming quality
96%
Poisoning risk
100%
Permission match
100%
Protocol compliance
100%

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~4,934Tokens (tool definitions)
~4.1 KBTypical response size
Significant attention impact (3.85% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "site": {
      "url": "https://www.projectthunder.com/mcp"
    }
  }
}

Remote endpoints

https://www.projectthunder.com/mcpstreamable-http

What it can do

Tool inventory

Tools (11)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢get_page(url, language)

Returns one page or Insights article from projectthunder.com as Markdown: title, URL, summary and the full content. Accepts a full URL (https://www.projectthunder.com/bigcommerce-sap-integration.html) or a path (/bigcommerce-sap-integration.html). A URL on projectthunder.mx, pt.projectthunder.com or projectthunder.asia returns that language's page.

Input Schema

{
  "type": "object",
  "properties": {
    "url": {
      "description": "Full URL or path of the page, as returned by search_site, list_pages or list_articles.",
      "type": "string"
    },
    "language": {
      "description": "Optional language: en (default), es, pt or zh. Spanish, Portuguese and Chinese results come from projectthunder.mx, pt.projectthunder.com and projectthunder.asia. The ERP partner directory and partner profiles exist only in English: search and list them without a language (get_page returns them in English). Overrides the language implied by the URL's host.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "url"
  ]
}
🟢get_contact_info(language)

ProjectThunder's phone number, email, contact page, mailing address, where the team works and the topics the contact form covers. Use it when someone wants to talk to ProjectThunder about a project.

Input Schema

{
  "type": "object",
  "properties": {
    "language": {
      "description": "Optional language: en (default), es, pt or zh. Spanish, Portuguese and Chinese results come from projectthunder.mx, pt.projectthunder.com and projectthunder.asia. The ERP partner directory and partner profiles exist only in English: search and list them without a language (get_page returns them in English). Picks the contact page for that language.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "company": {
      "type": "string"
    },
    "phone": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "contactPage": {
      "type": "string"
    },
    "mailingAddress": {
      "type": "string"
    },
    "whereWeWork": {
      "type": "string"
    },
    "responseTime": {
      "type": "string"
    },
    "inBusinessSince": {
      "type": "string"
    },
    "topics": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "freeWebsiteScan": {
      "type": "string"
    }
  },
  "required": [
    "company",
    "phone",
    "email",
    "contactPage",
    "mailingAddress",
    "whereWeWork",
    "responseTime",
    "inBusinessSince",
    "topics",
    "freeWebsiteScan"
  ]
}
🟢list_articles(language)

Lists the Insights articles (B2B e-commerce, ERP integration, agentic commerce, .NET modernization, .NET MAUI) with publish dates and summaries, newest first. Use get_page to read one. English by default; set language for the Spanish, Portuguese or Chinese site.

Input Schema

{
  "type": "object",
  "properties": {
    "language": {
      "description": "Optional language: en (default), es, pt or zh. Spanish, Portuguese and Chinese results come from projectthunder.mx, pt.projectthunder.com and projectthunder.asia. The ERP partner directory and partner profiles exist only in English: search and list them without a language (get_page returns them in English).",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "pages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "published": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "title",
          "url",
          "type",
          "summary",
          "published"
        ]
      }
    }
  },
  "required": [
    "count",
    "pages"
  ]
}
🟢list_case_studies(platform, keyword)

Projects from ProjectThunder's portfolio: the client, the platform (Sana Commerce, BigCommerce, DynamicWeb, mobile, AI), the industry, the ERP where the site names it, and what was built. Optionally filter by platform or by a word such as an industry.

Input Schema

{
  "type": "object",
  "properties": {
    "platform": {
      "description": "Optional platform filter, for example \"BigCommerce\" or \"Sana Commerce\".",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "keyword": {
      "description": "Optional word to match in the industry, client name or description, for example \"food\" or \"distribution\".",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "caseStudies": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "section": {
            "type": "string"
          },
          "tag": {
            "type": "string"
          },
          "platforms": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "erp": {
            "type": [
              "string",
              "null"
            ]
          },
          "summary": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "section",
          "tag",
          "platforms",
          "erp",
          "summary",
          "source"
        ]
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "count",
    "caseStudies",
    "note"
  ]
}
🟢get_erp_partner(partner)

Returns one listing from the ERP partner directory by slug or name, for example "key-partner-solutions".

Input Schema

{
  "type": "object",
  "properties": {
    "partner": {
      "description": "The partner's slug (from list_erp_partners) or its name.",
      "type": "string"
    }
  },
  "required": [
    "partner"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "slug": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "kind": {
      "type": "string"
    },
    "profileUrl": {
      "type": "string"
    },
    "website": {
      "type": "string"
    },
    "location": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "contact": {
      "type": [
        "string",
        "null"
      ]
    },
    "contactTitle": {
      "type": [
        "string",
        "null"
      ]
    },
    "contactLinkedIn": {
      "type": [
        "string",
        "null"
      ]
    },
    "companyLinkedIn": {
      "type": [
        "string",
        "null"
      ]
    },
    "erps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "microsoftCredentials": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "products": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "services": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "specialties": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "industries": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "summary": {
      "type": "string"
    },
    "listedOn": {
      "type": "string"
    },
    "lastUpdated": {
      "type": "string"
    }
  },
  "required": [
    "slug",
    "name",
    "kind",
    "profileUrl",
    "website",
    "location",
    "country",
    "contact",
    "contactTitle",
    "contactLinkedIn",
    "companyLinkedIn",
    "erps",
    "microsoftCredentials",
    "products",
    "services",
    "specialties",
    "industries",
    "summary",
    "listedOn",
    "lastUpdated"
  ]
}
🟢plan_commerce_migration(from, to, erp)

A rollout plan for moving a B2B store from one platform to another around an ERP, from ProjectThunder's published method: the migration paths its pages cover, project phases, a pre-migration checklist, risks with mitigations, which integration pattern fits (real-time, middleware or batch), when each platform is the right target, and the ERP's own caveats when one is named. Every point links to its source page.

Input Schema

{
  "type": "object",
  "properties": {
    "from": {
      "description": "The current platform, for example \"Sana 9.3\", \"Magento 2\", \"legacy .NET store\" or \"no store yet\".",
      "type": "string"
    },
    "to": {
      "description": "Optional target platform: Sana Commerce Cloud, BigCommerce, DynamicWeb or Wardenclyffe.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "erp": {
      "description": "Optional ERP the store must integrate with.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "from"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "from": {
      "type": "string"
    },
    "to": {
      "type": [
        "string",
        "null"
      ]
    },
    "erp": {
      "type": [
        "string",
        "null"
      ]
    },
    "matchingPaths": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "from": {
            "type": "string"
          },
          "to": {
            "type": "string"
          },
          "notes": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "from",
          "to",
          "notes",
          "source"
        ]
      }
    },
    "phases": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "activities": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "summary",
          "activities",
          "source"
        ]
      }
    },
    "checklist": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "item": {
            "type": "string"
          },
          "why": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "item",
          "why",
          "source"
        ]
      }
    },
    "risks": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "risk": {
            "type": "string"
          },
          "mitigation": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "risk",
          "mitigation",
          "source"
        ]
      }
    },
    "integrationPatterns": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "pattern": {
            "type": "string"
          },
          "whenToUse": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "pattern",
          "whenToUse",
          "source"
        ]
      }
    },
    "platformChoice": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "platform": {
            "type": "string"
          },
          "bestWhen": {
            "type": "string"
          },
          "source": {
            "type": "string"
          }
        },
        "required": [
          "platform",
          "bestWhen",
          "source"
        ]
      }
    },
    "erpFit": {
      "type": [
        "object",
        "null"
      ],
      "properties": {
        "erp": {
          "type": "string"
        },
        "vendor": {
          "type": "string"
        },
        "summary": {
          "type": "string"
        },
        "summarySource": {
          "type": "string"
        },
        "versions": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "label": {
                "type": "string"
              },
              "note": {
                "type": "string"
              },
              "source": {
                "type": "string"
              },
              "matchesAskedVersion": {
                "type": "boolean"
              }
            },
            "required": [
              "label",
              "note",
              "source",
              "matchesAskedVersion"
            ]
          }
        },
        "platforms": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "platform": {
                "type": "string"
              },
              "approach": {
                "type": "string"
              },
              "notes": {
                "type": "string"
              },
              "source": {
                "type": "string"
              }
            },
            "required": [
              "platform",
              "approach",
              "notes",
              "source"
            ]
          }
        },
        "considerations": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "text": {
                "type": "string"
              },
              "source": {
                "type": "string"
              }
            },
            "required": [
              "text",
              "source"
            ]
          }
        },
        "moreConsiderations": {
          "type": "integer"
        },
        "guides": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "url": {
                "type": "string"
              },
              "title": {
                "type": "string"
              }
            },
            "required": [
              "url",
              "title"
            ]
          }
        },
        "partners": {
          "type": [
            "object",
            "null"
          ],
          "properties": {
            "directoryUrl": {
              "type": "string"
            },
            "count": {
              "type": "integer"
            },
            "listings": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "location": {
                    "type": "string"
                  },
                  "profileUrl": {
                    "type": "string"
                  }
                },
                "required": [
                  "name",
                  "location",
                  "profileUrl"
                ]
              }
            }
          },
          "required": [
            "directoryUrl",
            "count",
            "listings"
          ]
        }
      },
      "required": [
        "erp",
        "vendor",
        "summary",
        "summarySource",
        "versions",
        "platforms",
        "considerations",
        "moreConsiderations",
        "guides",
        "partners"
      ]
    },
    "guides": {
      "type": "array",
      "items": {
        "$ref": "#/properties/erpFit/properties/guides/items"
      }
    },
    "gaps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "more": {
      "type": "object",
      "properties": {
        "phases": {
          "type": "integer"
        },
        "checklist": {
          "type": "integer"
        },
        "risks": {
          "type": "integer"
        },
        "integrationPatterns": {
          "type": "integer"
        },
        "platformChoice": {
          "type": "integer"
        },
        "guides": {
          "type": "integer"
        }
      },
      "required": [
        "phases",
        "checklist",
        "risks",
        "integrationPatterns",
        "platformChoice",
        "guides"
      ]
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "from",
    "to",
    "erp",
    "matchingPaths",
    "phases",
    "checklist",
    "risks",
    "integrationPatterns",
    "platformChoice",
    "erpFit",
    "guides",
    "gaps",
    "more",
    "note"
  ]
}
🟢list_pages(type, language)

Lists the pages on projectthunder.com with title, URL, type and one-line summary, in site order. English by default; set language for the Spanish, Portuguese or Chinese site.

Input Schema

{
  "type": "object",
  "properties": {
    "type": {
      "description": "Optional filter: page, article, directory, partner or legal.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "language": {
      "description": "Optional language: en (default), es, pt or zh. Spanish, Portuguese and Chinese results come from projectthunder.mx, pt.projectthunder.com and projectthunder.asia. The ERP partner directory and partner profiles exist only in English: search and list them without a language (get_page returns them in English).",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "pages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "published": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "title",
          "url",
          "type",
          "summary",
          "published"
        ]
      }
    }
  },
  "required": [
    "count",
    "pages"
  ]
}
⚪scan_website(url)

Scans one public website with ProjectThunder's site scan: detects the commerce platform and technologies in use (public BuiltWith data plus the home page), then returns a plain-English summary, what is working, risks that may be costing customers, growth and modernization opportunities, SEO and security notes, AI opportunities, and 0-100 scores. Free; it asks for no name, email or account. Scans the site's home page. Each website gets one fresh scan every 30 days; asking again returns the saved scan with its date. A fresh scan takes 10 to 40 seconds.

Input Schema

{
  "type": "object",
  "properties": {
    "url": {
      "description": "The website to scan, for example \"example.com\" or \"https://www.example.com\".",
      "type": "string"
    }
  },
  "required": [
    "url"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string"
    },
    "site": {
      "type": "string"
    },
    "scannedAt": {
      "type": "string"
    },
    "fromSavedScan": {
      "type": "boolean"
    },
    "complete": {
      "type": "boolean"
    },
    "summary": {
      "type": "string"
    },
    "techStack": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "scores": {
      "type": "object",
      "additionalProperties": {
        "type": "integer"
      }
    },
    "whatsWorking": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "customerRisks": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "growthOpportunities": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "modernizations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "seoNotes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "securityNotes": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "aiOpportunities": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "url",
    "site",
    "scannedAt",
    "fromSavedScan",
    "complete",
    "summary",
    "techStack",
    "scores",
    "whatsWorking",
    "customerRisks",
    "growthOpportunities",
    "modernizations",
    "seoNotes",
    "securityNotes",
    "aiOpportunities",
    "note"
  ]
}
🟢assess_erp_commerce_fit(erp, version, platform)

For an ERP (and optionally a version and an e-commerce platform), returns how it integrates with Sana Commerce Cloud, BigCommerce, DynamicWeb or Wardenclyffe, version notes such as end-of-support dates, what to settle first, the guides that cover it, and implementation partners in ProjectThunder's ERP partner directory. Every point carries the URL of the page it comes from. Examples: "Business Central", "Dynamics GP 2018", "SAP Business One", "NAV 2009 R2".

Input Schema

{
  "type": "object",
  "properties": {
    "erp": {
      "description": "The ERP, for example \"Business Central\", \"Dynamics NAV\", \"SAP S/4HANA\" or \"Epicor Kinetic\".",
      "type": "string"
    },
    "version": {
      "description": "Optional ERP version or edition, for example \"2009 R2\", \"GP 2018\" or \"on-premises\".",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "platform": {
      "description": "Optional e-commerce platform to focus on: Sana Commerce Cloud, BigCommerce, DynamicWeb or Wardenclyffe.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "erp"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "version": {
      "type": [
        "string",
        "null"
      ]
    },
    "platform": {
      "type": [
        "string",
        "null"
      ]
    },
    "count": {
      "type": "integer"
    },
    "erps": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "erp": {
            "type": "string"
          },
          "vendor": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "summarySource": {
            "type": "string"
          },
          "versions": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "label": {
                  "type": "string"
                },
                "note": {
                  "type": "string"
                },
                "source": {
                  "type": "string"
                },
                "matchesAskedVersion": {
                  "type": "boolean"
                }
              },
              "required": [
                "label",
                "note",
                "source",
                "matchesAskedVersion"
              ]
            }
          },
          "platforms": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "platform": {
                  "type": "string"
                },
                "approach": {
                  "type": "string"
                },
                "notes": {
                  "type": "string"
                },
                "source": {
                  "type": "string"
                }
              },
              "required": [
                "platform",
                "approach",
                "notes",
                "source"
              ]
            }
          },
          "considerations": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "text": {
                  "type": "string"
                },
                "source": {
                  "type": "string"
                }
              },
              "required": [
                "text",
                "source"
              ]
            }
          },
          "moreConsiderations": {
            "type": "integer"
          },
          "guides": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                }
              },
              "required": [
                "url",
                "title"
              ]
            }
          },
          "partners": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "directoryUrl": {
                "type": "string"
              },
              "count": {
                "type": "integer"
              },
              "listings": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "location": {
                      "type": "string"
                    },
                    "profileUrl": {
                      "type": "string"
                    }
                  },
                  "required": [
                    "name",
                    "location",
                    "profileUrl"
                  ]
                }
              }
            },
            "required": [
              "directoryUrl",
              "count",
              "listings"
            ]
          }
        },
        "required": [
          "erp",
          "vendor",
          "summary",
          "summarySource",
          "versions",
          "platforms",
          "considerations",
          "moreConsiderations",
          "guides",
          "partners"
        ]
      }
    },
    "gaps": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "query",
    "version",
    "platform",
    "count",
    "erps",
    "gaps",
    "note"
  ]
}
🟢list_erp_partners(erp)

Lists the firms and independent consultants in ProjectThunder's ERP partner directory, optionally filtered by ERP (for example Business Central or Dynamics NAV). Each listing includes location, ERPs, Microsoft credentials, products, services, specialties, industries and links.

Input Schema

{
  "type": "object",
  "properties": {
    "erp": {
      "description": "Optional ERP filter by name or slug, for example \"Business Central\", \"business-central\" or \"Dynamics NAV\".",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  }
}

Output Schema

{
  "type": "object",
  "properties": {
    "erp": {
      "type": [
        "string",
        "null"
      ]
    },
    "count": {
      "type": "integer"
    },
    "erpsWithPartners": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "partners": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "slug": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "kind": {
            "type": "string"
          },
          "profileUrl": {
            "type": "string"
          },
          "website": {
            "type": "string"
          },
          "location": {
            "type": "string"
          },
          "country": {
            "type": "string"
          },
          "contact": {
            "type": [
              "string",
              "null"
            ]
          },
          "contactTitle": {
            "type": [
              "string",
              "null"
            ]
          },
          "contactLinkedIn": {
            "type": [
              "string",
              "null"
            ]
          },
          "companyLinkedIn": {
            "type": [
              "string",
              "null"
            ]
          },
          "erps": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "microsoftCredentials": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "products": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "services": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "specialties": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "industries": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "summary": {
            "type": "string"
          },
          "listedOn": {
            "type": "string"
          },
          "lastUpdated": {
            "type": "string"
          }
        },
        "required": [
          "slug",
          "name",
          "kind",
          "profileUrl",
          "website",
          "location",
          "country",
          "contact",
          "contactTitle",
          "contactLinkedIn",
          "companyLinkedIn",
          "erps",
          "microsoftCredentials",
          "products",
          "services",
          "specialties",
          "industries",
          "summary",
          "listedOn",
          "lastUpdated"
        ]
      }
    },
    "note": {
      "type": "string"
    }
  },
  "required": [
    "erp",
    "count",
    "erpsWithPartners",
    "partners",
    "note"
  ]
}
🟢search_site(query, type, limit, language)

Search the pages on projectthunder.com: services, platform guides (BigCommerce, Sana Commerce, DynamicWeb), ERP integration guides (SAP, Business Central, Dynamics GP, NAV, AX, Epicor), comparisons, Insights articles, the ERP partner directory and partner profiles. Returns the best matches with a snippet. Use get_page to read a result in full. English by default; set language for the Spanish, Portuguese or Chinese site.

Input Schema

{
  "type": "object",
  "properties": {
    "query": {
      "description": "What to look for, in plain words, for example \"SAP ECC integration\" or \"Business Central partner pricing\".",
      "type": "string"
    },
    "type": {
      "description": "Optional filter: page, article, directory, partner or legal.",
      "type": [
        "string",
        "null"
      ],
      "default": null
    },
    "limit": {
      "description": "Maximum results, 1 to 25. Default 8.",
      "type": "integer",
      "default": 8
    },
    "language": {
      "description": "Optional language: en (default), es, pt or zh. Spanish, Portuguese and Chinese results come from projectthunder.mx, pt.projectthunder.com and projectthunder.asia. The ERP partner directory and partner profiles exist only in English: search and list them without a language (get_page returns them in English).",
      "type": [
        "string",
        "null"
      ],
      "default": null
    }
  },
  "required": [
    "query"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string"
    },
    "count": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "snippet": {
            "type": "string"
          },
          "published": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "title",
          "url",
          "type",
          "summary",
          "snippet",
          "published"
        ]
      }
    }
  },
  "required": [
    "query",
    "count",
    "results"
  ]
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded11 tools