@jupiterone/jupiterone-mcp
Version:
Model Context Protocol server for JupiterOne account rules and rule details
17 lines • 428 B
TypeScript
import { GraphQLClient } from 'graphql-request';
export declare class AccountService {
private client;
constructor(client: GraphQLClient);
/**
* Get account information
*/
getAccountInfo(): Promise<{
accountId: string;
name?: string;
}>;
/**
* Test the connection to JupiterOne
*/
testConnection(): Promise<boolean>;
}
//# sourceMappingURL=account-service.d.ts.map