Can ServiceNow Build Agent be invoked from an external IDE?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hello everyone,
I am using the ServiceNow SDK to develop applications in Visual Studio Code.
If it were possible to invoke the ServiceNow Build Agent directly from Visual Studio Code or another external IDE, I believe it would enable a broader range of development and automation scenarios.
Has anyone successfully called the ServiceNow Build Agent from an external IDE? If so, could you share how you achieved it?
I suspect this might be possible using technologies such as A2A or MCP, but I have not been able to find a concrete implementation approach. If anyone has experience with this or can point me in the right direction, I would greatly appreciate your insights.
Thank you!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
31m ago
@ishikawa-da Hello,
I believe, this is now supported, but the recommended approach is slightly different from remotely invoking the native Build Agent chat through A2A or MCP.
With the Build Anywhere, Run on ServiceNow capability introduced in 2026, ServiceNow exposes Build Agent skills through the ServiceNow SDK. Starting with SDK 4.6, external AI coding environments can use those ServiceNow-specific skills while developing locally.
This means you can work from VS Code with tools such as Claude Code, Cursor, OpenAI Codex, Windsurf, etc., have the coding agent generate ServiceNow Fluent/TypeScript application artifacts, and then use the SDK to build and deploy the application to your ServiceNow instance.
Conceptually:
Claude Code / Cursor / Codex
↓
ServiceNow SDK + Build Agent skills
↓
Fluent / TypeScript application
↓
now-sdk build / deploy
↓
ServiceNowMCP is not required for this. ServiceNow's documented MCP support allows Build Agent to consume external MCP servers such as Figma or Linear. A2A is intended for agent-to-agent interoperability rather than the external development workflow.
I also could not find a documented public REST API that lets an external IDE directly submit prompts to the same native Build Agent session used in ServiceNow Studio/ServiceNow IDE. For external IDE development, the supported mechanism is the SDK + Build Agent skills rather than calling Build Agent remotely.
You should refer to ServiceNow's Build Anywhere, Run on ServiceNow documentation/announcement and ensure the project is using ServiceNow SDK 4.6 or later.
If my response helped, please mark it as correct and close the thread, this helps future readers find the solution faster!!!