n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 360 B
TypeScript
import type { BuiltTool, CredentialProvider } from '@n8n/agents';
import type { OauthService } from '../../../oauth/oauth.service';
export interface VerifyMcpServerDeps {
credentialProvider: CredentialProvider;
oauthService: OauthService;
projectId: string;
}
export declare function buildVerifyMcpServerTool(deps: VerifyMcpServerDeps): BuiltTool;