From 2bf52f283e539c0473ce1ad6a6f16a4bf1e58619 Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 20:16:35 +0000 Subject: [PATCH] chore(docs): update GitHub URLs from mendableai to firecrawl org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The GitHub org has been renamed from `mendableai` to `firecrawl`. This updates references to `github.com/mendableai/firecrawl-go` and `github.com/mendableai/firecrawl/issues` (and one mock search result title) so docs link directly to the new org without relying on GitHub's redirect. Only base/English files are touched per CLAUDE.md guidance — localized mirrors will be updated by the translation pipeline. npm/smithery package references (`@mendableai/firecrawl-js`, `@mendableai/mcp-server-firecrawl`) are out of scope here since the packages have not been republished under a new scope. Co-Authored-By: micahstairs --- contributing/guide.mdx | 2 +- features/search-v0.mdx | 4 ++-- quickstarts/go.mdx | 2 +- snippets/v1/crawl/base/go.mdx | 2 +- snippets/v1/crawl/fast/go.mdx | 2 +- snippets/v1/installation/go.mdx | 2 +- snippets/v1/map/base/go.mdx | 2 +- snippets/v1/scrape-and-crawl/go.mdx | 2 +- snippets/v1/scrape/base/go.mdx | 2 +- snippets/v1/scrape/fast/go.mdx | 2 +- snippets/v2/search/base/output.mdx | 2 +- v0/advanced-scraping-guide.mdx | 4 ++-- v0/features/crawl.mdx | 4 ++-- v0/features/extract.mdx | 2 +- v0/features/scrape.mdx | 4 ++-- v0/introduction.mdx | 8 ++++---- v0/sdks/go.mdx | 4 ++-- v1/advanced-scraping-guide.mdx | 4 ++-- v1/features/search-v0.mdx | 4 ++-- 19 files changed, 29 insertions(+), 29 deletions(-) diff --git a/contributing/guide.mdx b/contributing/guide.mdx index 58540661d..542dce723 100644 --- a/contributing/guide.mdx +++ b/contributing/guide.mdx @@ -8,7 +8,7 @@ sidebarTitle: "Running Locally" This guide walks you through running the Firecrawl API server on your local machine. Follow these steps to set up the development environment, start the services, and send your first request. -If you're contributing, the process follows standard open-source conventions: fork the repo, make changes, run tests, and open a pull request. For questions or help getting started, reach out to help@firecrawl.com or [submit an issue](https://github.com/mendableai/firecrawl/issues). +If you're contributing, the process follows standard open-source conventions: fork the repo, make changes, run tests, and open a pull request. For questions or help getting started, reach out to help@firecrawl.com or [submit an issue](https://github.com/firecrawl/firecrawl/issues). ## Prerequisites diff --git a/features/search-v0.mdx b/features/search-v0.mdx index 2a25283e8..74ad76075 100644 --- a/features/search-v0.mdx +++ b/features/search-v0.mdx @@ -108,7 +108,7 @@ The response will be similar to the one shown in the curl command above. #### Installing Go SDK ```bash -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` #### Search a query @@ -118,7 +118,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/quickstarts/go.mdx b/quickstarts/go.mdx index a1c09af0a..8d2670677 100644 --- a/quickstarts/go.mdx +++ b/quickstarts/go.mdx @@ -246,7 +246,7 @@ func (fc *FirecrawlClient) Search(query string, limit int) ([]byte, error) { ``` -A [community Go SDK](https://github.com/mendableai/firecrawl-go) is available for the v1 API. See the [Go SDK docs](/sdks/go) for details. +A [community Go SDK](https://github.com/firecrawl/firecrawl-go) is available for the v1 API. See the [Go SDK docs](/sdks/go) for details. ## Next steps diff --git a/snippets/v1/crawl/base/go.mdx b/snippets/v1/crawl/base/go.mdx index 0305c8849..814b4548c 100644 --- a/snippets/v1/crawl/base/go.mdx +++ b/snippets/v1/crawl/base/go.mdx @@ -3,7 +3,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/snippets/v1/crawl/fast/go.mdx b/snippets/v1/crawl/fast/go.mdx index 796d0d815..d7a34b51b 100644 --- a/snippets/v1/crawl/fast/go.mdx +++ b/snippets/v1/crawl/fast/go.mdx @@ -4,7 +4,7 @@ package main import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/snippets/v1/installation/go.mdx b/snippets/v1/installation/go.mdx index cc5ee9f55..6011e6d35 100644 --- a/snippets/v1/installation/go.mdx +++ b/snippets/v1/installation/go.mdx @@ -1,3 +1,3 @@ ```bash Go -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` \ No newline at end of file diff --git a/snippets/v1/map/base/go.mdx b/snippets/v1/map/base/go.mdx index e2a0d706d..a4a957488 100644 --- a/snippets/v1/map/base/go.mdx +++ b/snippets/v1/map/base/go.mdx @@ -3,7 +3,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/snippets/v1/scrape-and-crawl/go.mdx b/snippets/v1/scrape-and-crawl/go.mdx index 58e67535f..8769dc344 100644 --- a/snippets/v1/scrape-and-crawl/go.mdx +++ b/snippets/v1/scrape-and-crawl/go.mdx @@ -3,7 +3,7 @@ import ( "fmt" "log" "github.com/google/uuid" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func ptr[T any](v T) *T { diff --git a/snippets/v1/scrape/base/go.mdx b/snippets/v1/scrape/base/go.mdx index 4601273fc..b528cea26 100644 --- a/snippets/v1/scrape/base/go.mdx +++ b/snippets/v1/scrape/base/go.mdx @@ -3,7 +3,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/snippets/v1/scrape/fast/go.mdx b/snippets/v1/scrape/fast/go.mdx index 0bd3c37a9..88c4185d8 100644 --- a/snippets/v1/scrape/fast/go.mdx +++ b/snippets/v1/scrape/fast/go.mdx @@ -5,7 +5,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/snippets/v2/search/base/output.mdx b/snippets/v2/search/base/output.mdx index e5896662a..347259df8 100644 --- a/snippets/v2/search/base/output.mdx +++ b/snippets/v2/search/base/output.mdx @@ -11,7 +11,7 @@ }, { "url": "https://github.com/firecrawl/firecrawl", - "title": "mendableai/firecrawl: Turn entire websites into LLM-ready ... - GitHub", + "title": "firecrawl/firecrawl: Turn entire websites into LLM-ready ... - GitHub", "description": "Firecrawl is an API service that takes a URL, crawls it, and converts it into clean markdown or structured data.", "position": 2 }, diff --git a/v0/advanced-scraping-guide.mdx b/v0/advanced-scraping-guide.mdx index a8a7d8166..3e73bd097 100644 --- a/v0/advanced-scraping-guide.mdx +++ b/v0/advanced-scraping-guide.mdx @@ -34,13 +34,13 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev'); ``` ```go Go -// go get github.com/mendableai/firecrawl-go +// go get github.com/firecrawl/firecrawl-go import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v0/features/crawl.mdx b/v0/features/crawl.mdx index 07d33e418..f5be7ce33 100644 --- a/v0/features/crawl.mdx +++ b/v0/features/crawl.mdx @@ -43,7 +43,7 @@ npm install @mendable/firecrawl-js ``` ```go Go -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` ```toml Rust @@ -96,7 +96,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v0/features/extract.mdx b/v0/features/extract.mdx index 1fb70b7c2..bba076d27 100644 --- a/v0/features/extract.mdx +++ b/v0/features/extract.mdx @@ -163,7 +163,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v0/features/scrape.mdx b/v0/features/scrape.mdx index 4432839a8..e05516f74 100644 --- a/v0/features/scrape.mdx +++ b/v0/features/scrape.mdx @@ -41,7 +41,7 @@ npm install @mendable/firecrawl-js ``` ```go Go -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` ```toml Rust @@ -84,7 +84,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v0/introduction.mdx b/v0/introduction.mdx index 880713429..4383a6ecd 100644 --- a/v0/introduction.mdx +++ b/v0/introduction.mdx @@ -46,7 +46,7 @@ npm install @mendable/firecrawl-js ``` ```bash Go -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` ```toml Rust @@ -101,7 +101,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { @@ -266,7 +266,7 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev'); import ( "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { @@ -401,7 +401,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) app, err := NewFirecrawlApp(TEST_API_KEY, API_URL) diff --git a/v0/sdks/go.mdx b/v0/sdks/go.mdx index 04ad0b957..8ed9978ec 100644 --- a/v0/sdks/go.mdx +++ b/v0/sdks/go.mdx @@ -13,7 +13,7 @@ og:description: "Firecrawl Go SDK is a wrapper around the Firecrawl API to help To install the Firecrawl Go SDK, you can use go get: ```bash -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` ## Usage @@ -29,7 +29,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v1/advanced-scraping-guide.mdx b/v1/advanced-scraping-guide.mdx index d18957518..86c8f5f96 100644 --- a/v1/advanced-scraping-guide.mdx +++ b/v1/advanced-scraping-guide.mdx @@ -34,13 +34,13 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev'); ``` ```go Go -// go get github.com/mendableai/firecrawl-go +// go get github.com/firecrawl/firecrawl-go import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() { diff --git a/v1/features/search-v0.mdx b/v1/features/search-v0.mdx index 2a25283e8..74ad76075 100644 --- a/v1/features/search-v0.mdx +++ b/v1/features/search-v0.mdx @@ -108,7 +108,7 @@ The response will be similar to the one shown in the curl command above. #### Installing Go SDK ```bash -go get github.com/mendableai/firecrawl-go +go get github.com/firecrawl/firecrawl-go ``` #### Search a query @@ -118,7 +118,7 @@ import ( "fmt" "log" - "github.com/mendableai/firecrawl-go" + "github.com/firecrawl/firecrawl-go" ) func main() {