Files
alighasami 3d5eaf9445
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

159 lines
4.2 KiB
TypeScript

import { SerpAPI } from '@langchain/community/tools/serpapi';
import { logWrapper, getConnectionHintNoticeField } from '@n8n/ai-utilities';
import {
type IExecuteFunctions,
NodeConnectionTypes,
type INodeType,
type INodeTypeDescription,
type ISupplyDataFunctions,
type SupplyData,
type INodeExecutionData,
NodeOperationError,
} from 'n8n-workflow';
async function getTool(ctx: ISupplyDataFunctions | IExecuteFunctions, itemIndex: number) {
const credentials = await ctx.getCredentials('serpApi');
const options = ctx.getNodeParameter('options', itemIndex) as object;
return new SerpAPI(credentials.apiKey as string, options);
}
export class ToolSerpApi implements INodeType {
description: INodeTypeDescription = {
displayName: 'SerpApi (Google Search)',
name: 'toolSerpApi',
icon: 'file:serpApi.svg',
group: ['transform'],
version: 1,
description: 'Search in Google using SerpAPI',
defaults: {
name: 'SerpAPI',
},
codex: {
categories: ['AI'],
subcategories: {
AI: ['Tools'],
Tools: ['Other Tools'],
},
resources: {
primaryDocumentation: [
{
url: 'https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/',
},
],
},
},
inputs: [],
outputs: [NodeConnectionTypes.AiTool],
outputNames: ['Tool'],
credentials: [
{
name: 'serpApi',
required: true,
},
],
properties: [
getConnectionHintNoticeField([NodeConnectionTypes.AiAgent]),
{
displayName: 'Options',
name: 'options',
type: 'collection',
placeholder: 'Add Option',
default: {},
options: [
{
displayName: 'Country',
name: 'gl',
type: 'string',
default: 'us',
description:
'Defines the country to use for search. Head to <a href="https://serpapi.com/google-countries">Google countries page</a> for a full list of supported countries.',
},
{
displayName: 'Device',
name: 'device',
type: 'options',
options: [
{
name: 'Desktop',
value: 'desktop',
},
{
name: 'Mobile',
value: 'mobile',
},
{
name: 'Tablet',
value: 'tablet',
},
],
default: 'desktop',
description: 'Device to use to get the results',
},
{
displayName: 'Explicit Array',
name: 'no_cache',
type: 'boolean',
default: false,
description:
'Whether to force SerpApi to fetch the Google results even if a cached version is already present. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month.',
},
{
displayName: 'Google Domain',
name: 'google_domain',
type: 'string',
default: 'google.com',
description:
'Defines the domain to use for search. Head to <a href="https://serpapi.com/google-domains">Google domains page</a> for a full list of supported domains.',
},
{
displayName: 'Language',
name: 'hl',
type: 'string',
default: 'en',
description:
'Defines the language to use. It\'s a two-letter language code. (e.g., `en` for English, `es` for Spanish, or `fr` for French). Head to <a href="https://serpapi.com/google-languages">Google languages page</a> for a full list of supported languages.',
},
],
},
],
};
async supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData> {
return {
response: logWrapper(await getTool(this, itemIndex), this),
};
}
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const inputData = this.getInputData();
const returnData: INodeExecutionData[] = [];
for (let itemIndex = 0; itemIndex < inputData.length; itemIndex++) {
const tool = await getTool(this, itemIndex);
const item = inputData[itemIndex].json;
if (typeof item.input !== 'string' || !item.input) {
throw new NodeOperationError(
this.getNode(),
`Missing search query input at itemIndex ${itemIndex}`,
);
}
const result = (await tool.invoke(item)) as string;
returnData.push({
json: {
response: result,
},
pairedItem: { item: itemIndex },
});
}
return [returnData];
}
}