When an AI agent makes use of Net Search to floor its solutions on behalf of a buyer, the group behind that agent wants area and date filters to regulate which sources the agent consults and the way recent these sources have to be. A financial-services agent shouldn’t floor its solutions in an unvetted weblog. A product-information agent shouldn’t cite pricing or stock knowledge from three years in the past when the person requested about present availability, as inventory ranges and pricing change quickly.
In the present day, we’re asserting runtime area and published-date filtering for Net Search on Amazon Bedrock AgentCore, a platform to construct, join, and optimize brokers at scale with any framework or mannequin. This functionality ships as a part of the web-search connector model 1.2.0. These capabilities give builders per-call management over which net domains their brokers can search and what publication-date window outcomes should fall inside, all enforced server-side. No exterior orchestration is required. When mixed with current admin-level area insurance policies, organizations have a layered filtering mannequin that enforces enterprise governance whereas giving particular person API calls the pliability to slim scope dynamically, per request.
Alongside runtime filtering, this launch additionally expands Net Search availability to 2 new AWS Areas: eu-west-1 (Dublin) and ap-northeast-1 (Tokyo). Prospects in Europe and Asia Pacific can now invoke Net Search from a regional endpoint nearer to their workloads, decreasing latency and offering an EU-based entry level for organizations with knowledge proximity necessities. AgentCore makes use of a zero-egress structure the place search queries stay inside AWS. This regional growth offers regulated prospects in these areas a path to grounded brokers with out routing visitors throughout the Atlantic.
On this publish, we stroll by what runtime filtering is, why it issues, how the layered admin-plus-runtime mannequin works, the right way to get began with the brand new API parameters, and what regional availability means in your workloads.
What’s new in connector model 1.2.0
This launch introduces two new capabilities inside the filters object of the Net Search software enter schema:
1. Runtime area filtering
Go an embrace (allowlist) or exclude (denylist) listing of domains on each instruments/name invocation. This offers per-request management over which sources the agent could seek the advice of.
| Area | Description |
| filters.domainFilter.embrace | Outcomes from these domains are returned |
| filters.domainFilter.exclude | Outcomes from these domains are suppressed |
Every listing helps as much as 100 domains, counted independently.
2. Revealed-date filtering
Prohibit outcomes to content material revealed inside a particular date vary utilizing ISO-8601 UTC bounds:
| Area | Description |
| filters.publishedDateFilter.from | Earliest publication date (inclusive) |
| filters.publishedDateFilter.to | Newest publication date (inclusive) |
Each filters are non-compulsory and utilized per request. Omitting them preserves the present conduct the place all listed content material is eligible.
Why runtime filtering issues
Actual-world agent workloads demand extra granular management than organization-wide insurance policies alone can present:
- Per-task supply restriction: A compliance agent analyzing regulatory updates ought to solely search .gov domains and accredited publishers, not the open net.
- Temporal scoping: A market-intelligence agent summarizing “this week’s earnings calls” ought to by no means floor outcomes from prior quarters, even when they rank extremely for the question.
- Dynamic enable/deny at name time: A multi-tenant platform serving totally different prospects might have totally different area insurance policies per request, with out creating separate targets for every tenant.
- Content material freshness ensures: A buyer assist agent answering “what modified within the newest launch” ought to solely return documentation revealed previously 7 days.
Runtime filtering addresses these wants by shifting management into the API name itself.
The way it works: The request movement
The next diagram exhibits the lifecycle of a filtered search request: your agent sends a instruments/name with question and filters, the Gateway merges your runtime filters with the admin-level coverage, executes the filtered question towards the online index, enforces compliance on the uncooked outcomes, and returns solely verified outcomes in your agent to floor its response on.
Determine 1: Lifecycle of a filtered Net Search request, from instruments/name to verified outcomes
Your complete lifecycle is server-side. There’s no client-side filtering loop, no post-processing, and no extra roundtrips.
The layered filtering mannequin: Admin + runtime
A key design precept of this launch is that runtime filters can slim however by no means develop the scope set by an administrator. This ensures enterprise coverage is at all times enforced, no matter what a runtime caller requests. The admin-level area lists are arrange throughout creation of the connector useful resource.
Merge logic
The next diagram illustrates how admin-level and runtime filter lists mix: embrace lists merge by intersection (solely domains current in each lists survive) whereas exclude lists merge by union (a website blocked at both degree stays blocked). Discover how d.com is dropped from the efficient allowlist as a result of it seems solely within the runtime listing, not the admin coverage.
Determine 2: How admin and runtime area lists merge, intersecting embrace lists and unioning exclude lists
Area embrace (allowlist): The efficient allowlist is the intersection of admin and runtime lists. If the admin permits [a.com, b.com, c.com] and the runtime name consists of [b.com, c.com, d.com], solely b.com and c.com are searched. The area d.com is outdoors the admin area listing and is silently dropped.
Area exclude (denylist): The efficient denylist is the union of admin and runtime lists. If the admin blocks [x.com] and the runtime name excludes [y.com], each are blocked.
Word: A runtime caller can’t search a website the admin hasn’t allowed and might’t unblock a website the admin has denied. Runtime filters can solely additional limit the search house.
Filter compliance conduct
When filters are energetic, Net Search prioritizes precision over recall. Outcomes that may’t be verified towards your filter standards are excluded quite than returned unfiltered:
- Area filter energetic: Outcomes and not using a recognizable area are excluded from consideration.
- Date filter energetic: Outcomes and not using a acknowledged publication date are excluded.
You would possibly obtain fewer outcomes when filters are energetic, however each end result you do obtain satisfies your specified filter standards.
Cap enforcement
There are 4 lists: admin embrace, admin exclude, runtime embrace, and runtime exclude. Every helps as much as 100 entries independently. For full configuration particulars and composition guidelines, see Configure area filtering within the Developer Information.
Getting began
Net Search is delivered by AgentCore Gateway, a functionality of Amazon Bedrock AgentCore that gives a managed endpoint, appropriate with the Mannequin Context Protocol (MCP), for connecting brokers to instruments. Observe these steps to allow runtime area and date filtering in your Net Search goal.
Stipulations
- An Amazon Bedrock AgentCore Gateway with a Net Search goal pinned to connector model 1.2.0 or later.
- AWS Identification and Entry Administration (IAM) permissions: your calling agent or utility wants
bedrock-agentcore:InvokeGatewayon the gateway Amazon Useful resource Identify (ARN), and the Gateway’s service position wantsbedrock-agentcore:InvokeWebSearch. See Configure the Gateway Service Function for the entire coverage. - The newest AWS SDK (Python, JavaScript, Java, .NET, Go, Ruby, or PHP).
Step 1: Create a Net Search goal with model 1.2.0
Use AWS SDK for Python (Boto3) to create (or replace) a goal pinned to model 1.2.0, with admin-level area insurance policies. If you have already got a Net Search goal on model 1.1.0, you need to use UpdateGatewayTarget to pin it to model 1.2.0 as a substitute of making a brand new goal. For added setup choices, together with the AgentCore CLI and console, see Arrange Net Search Instrument.
Step 2: Invoke with runtime filters
Think about your agent displays SEC enforcement actions for a authorized crew. The crew solely trusts sec.gov as a major supply, they usually want actions from the present month, not historic filings. Right here’s the instruments/name payload your agent sends:
The agent receives solely outcomes from sec.gov revealed within the final 5 weeks. There’s no third-party authorized commentary or outdated filings within the outcomes.
Word: The software title in your instruments/name request is the title found by instruments/listing, which follows the sample . For the goal created earlier, that’s web-search-filtered___WebSearch. The runtime embrace listing (sec.gov) intersects with the admin listing (approved-wire-1.com, approved-wire-2.com, sec.gov, investor.gov). As a result of sec.gov seems in each, it’s searched. In the event you handed some-other-site.com, it might be silently dropped as a result of it’s not within the admin allowlist.
Pattern code examples
Listed here are some examples of how you need to use the MCP shopper created from the AgentCore Gateway with the brand new filters at runtime. Code pattern to create MCP shopper for calling instruments
Instance 1: Medical analysis assistant with regulatory quotation necessities
You’re constructing a analysis assistant for a pharmaceutical firm’s regulatory affairs crew. Firm coverage mandates that each reply cite solely FDA, NIH, or ClinicalTrials.gov. A quotation from a well being weblog isn’t solely a high quality challenge. It’s a compliance violation that would floor in an audit. The agent must implement this on each search, no matter what question the mannequin constructs.
Each end result your agent cites is now verifiably from an accredited regulatory supply. Even when a WebMD article ranks #1 for the question, it by no means enters the mannequin’s context window.
Instance 2: Inventory-update agent, solely this week’s protection
Your buying and selling desk runs an agent that generates inventory updates all through the buying and selling day. The issue: when a dealer asks “what’s the most recent on semiconductor shares?”, the agent used to floor a highly-ranked evaluation from final quarter, and a dealer who acts on stale protection loses cash. You want each end result to be from the previous 7 days, no exceptions.
The agent’s inventory updates now draw solely on protection revealed within the final seven days. That highly-ranked evaluation from final quarter? It by no means reaches the mannequin, so it might probably by no means mislead a dealer.
Word: Outcomes and not using a acknowledged publication date are excluded when the date filter is energetic. This ensures each returned result’s verifiably inside your time window.
Instance 3: Investor-relations compliance, major sources, present quarter solely
Your investor-relations crew makes use of an agent to arrange earnings evaluation drafts. Two exhausting guidelines: (1) solely major sources: SEC filings and official investor pages: by no means crowdsourced monetary commentary websites, and (2) solely publications from this quarter, as a result of citing final quarter’s numbers in a current-quarter evaluation is a cloth error. You want each constraints enforced concurrently on each search.
The agent’s draft now cites solely official filings and wire experiences from Q2 and Q3 2026. Crowdsourced commentary and opinion items are blocked even when they match the question completely. Something from prior quarters is excluded no matter supply.
Instance 4: SaaS platform with per-tenant supply insurance policies
You use a research-agent SaaS platform serving healthcare, authorized, and financial-services prospects. Every tenant has contractually agreed supply insurance policies. Your healthcare buyer’s Enterprise Affiliate Settlement (BAA) requires citations from PubMed, CDC, and accredited medical analysis databases solely. Your authorized buyer insists on Cornell LII and official court docket information. Your finance buyer mandates SEC, the Federal Reserve, and accredited wire companies. You may’t spin up a separate gateway goal per tenant (you have got 200 tenants and counting), so that you apply tenant-specific filters at runtime utilizing the Strands Brokers SDK.
One gateway goal serves 200 tenants, every with their very own supply coverage, enforced dynamically at name time. Your healthcare tenant’s agent won’t ever cite Reddit or WebMD, and your finance tenant’s agent won’t ever cite a weblog publish, although they share the identical underlying infrastructure.
Necessary: System-prompt-based filtering (as proven earlier) depends on the agent following directions. It isn’t exhausting enforcement. For exhausting enforcement, configure allowed domains on the goal degree (admin embrace listing). Runtime filters handed instantly within the instruments/name payload present API-level enforcement that can not be bypassed by the mannequin.
Enter schema reference
The filters object launched in connector model 1.2.0 provides domainFilter (embrace/exclude lists, as much as 100 domains every) and publishedDateFilter (inclusive ISO-8601 UTC bounds) alongside the present question and maxResults fields. For the entire enter schema and field-by-field reference, see Enter schema within the Amazon Bedrock AgentCore Developer Information.
Availability and 0 knowledge egress
Runtime area and date filtering is obtainable at present within the US East (N. Virginia) (us-east-1), Europe (Eire) (eu-west-1), and Asia Pacific (Tokyo) (ap-northeast-1) Areas for Net Search on Amazon Bedrock AgentCore.
Net Search advantages from the zero knowledge egress structure of AgentCore: search queries are served solely inside AWS infrastructure. Buyer queries are usually not despatched to a third-party search engine or routed outdoors AWS. For organizations in regulated industries, corresponding to monetary companies, healthcare, and authorities, this removes a complete class of compliance overview.
Backward compatibility
These options are totally backward appropriate:
- No breaking modifications. Model 1.2.0 is a minor launch. The brand new fields are additive and the filters object is non-compulsory. Current API calls with out filters proceed to work precisely as earlier than.
- SDK assist. Out there throughout AWS SDKs (Python (Boto3), JavaScript/TypeScript, Java, .NET, Go, Ruby, and PHP SDKs), AWS Command Line Interface (AWS CLI) and AgentCore CLI.
- Console assist. The AWS Console for AgentCore Net Search targets now surfaces each embrace and exclude domain-list inputs within the connector configuration UI.
Conclusion
Runtime area and published-date filtering give builders constructing on Amazon Bedrock AgentCore Gateway the per-call precision they should construct reliable, policy-compliant brokers with out sacrificing the simplicity of a managed, server-side search software.
Whether or not you’re proscribing an agent to accredited regulatory sources, scoping outcomes to the final 24 hours, or dynamically making use of tenant-specific insurance policies, Net Search on AgentCore retains you in management with zero knowledge egress, IAM-native authentication, and no exterior dependencies.
These options can be found at present in US East (N. Virginia) (us-east-1), Europe (Eire) (eu-west-1), and Asia Pacific (Tokyo) (ap-northeast-1) AWS Areas for Net Search on Amazon Bedrock AgentCore.
Get began at present:
In regards to the authors

