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;