Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions app/en/mcp-servers/search/google_news/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ The Arcade Google News MCP Server provides a pre-built set of tools for interact
<TableOfContents
headers={["Tool Name", "Description"]}
data={[
["GoogleNews.SearchNews", "Search for news stories with Google News."],
[
"GoogleNews.SearchNewsStories",
"Search for news stories with Google News.",
],
]}
/>

Expand All @@ -35,7 +38,7 @@ The Arcade Google News MCP Server provides a pre-built set of tools for interact
tools](/home/build-tools/create-a-mcp-server).
</Callout>

## GoogleNews.SearchNews
## GoogleNews.SearchNewsStories

<br />
<TabbedCodeBlock
Expand All @@ -58,7 +61,7 @@ Search for news stories with Google News.

**Parameters**

- **`query`** _(string, required)_ Keywords to search for news articles. E.g. 'Apple launches new iPhone'.
- **`keywords`** _(string, required)_ Keywords to search for news articles. E.g. 'Apple launches new iPhone'.
- **`country_code`** _(string, optional, Defaults to `None`)_ 2-character country code to search for news articles. E.g. 'us' (United States). Defaults to `None` (search news globally).
- **`language`** _(string, optional, Defaults to 'en' English)_ 2-character language code to search for news articles. E.g. 'en' (English). Defaults to 'en' (English).
- **`limit`** _(int, optional, Defaults to `None`)_ Maximum number of news articles to return. Defaults to None (returns all results found by the API).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { Arcade } from "@arcadeai/arcadejs";
const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable

const USER_ID = "{arcade_user_id}";
const TOOL_NAME = "GoogleNews.SearchNews";
const TOOL_NAME = "GoogleNews.SearchNewsStories";

const toolInput = {
query: "Apple's new iPhone",
keywords: "Apple's new iPhone",
};

const response = await client.tools.execute({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable

USER_ID = "{arcade_user_id}"
TOOL_NAME = "GoogleNews.SearchNews"
TOOL_NAME = "GoogleNews.SearchNewsStories"

tool_input = {
"query": "Apple's new iPhone",
"keywords": "Apple's new iPhone",
}

response = client.tools.execute(
Expand Down