
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
aidp-protocol
Advanced tools
The open protocol for AI-accessible local business data
AIDP (AI Discovery Protocol) is an open standard that defines how local business data should be structured for AI platforms. Like HTTP for web traffic, AIDP standardizes the data exchange between local businesses and AI assistants.
Traditional business data formats (Google Business Profile, Yelp API) were designed for web search. AIDP is purpose-built for AI-native discovery:
| Feature | Traditional Formats | AIDP Protocol |
|---|---|---|
| Designed for | Web crawlers | AI assistants |
| Data structure | HTML/JSON fragments | AI-optimized schema |
| Availability | Static | Real-time |
| Analytics | Clicks only | Upstream visibility |
| Control | Platform-owned | Business-owned |
npm install aidp-protocol
import { validateBusinessProfile, BusinessProfile } from 'aidp-protocol';
const business: BusinessProfile = {
id: 'biz_123',
name: 'Acme Coffee Roasters',
category: 'Coffee Shop',
description: 'Artisan coffee roasters since 2010',
location: {
address: '123 Main St',
city: 'Portland',
state: 'OR',
postalCode: '97201',
country: 'US',
coordinates: { latitude: 45.5231, longitude: -122.6765 }
},
contact: {
phone: '+1-503-555-0123',
email: 'hello@acmecoffee.com',
website: 'https://acmecoffee.com'
},
hours: {
monday: { open: '07:00', close: '18:00' },
tuesday: { open: '07:00', close: '18:00' },
// ...
}
};
// Validate the profile
const result = validateBusinessProfile(business);
if (result.valid) {
console.log('✅ Profile is valid and AI-ready!');
} else {
console.log('❌ Validation errors:', result.errors);
}
Structured data designed for LLM comprehension, not just web crawlers.
Track visibility metrics that happen before traditional analytics (impressions, citations).
Works with MCP (Model Context Protocol), ChatGPT Plugins, REST APIs, and more.
Businesses own and control their data — no platform lock-in.
MIT licensed, community-governed, transparent development.
| Document | Description |
|---|---|
| Core Schema | Data model specification |
| MCP Tools | Model Context Protocol integration |
| Validation | TypeScript validation utilities |
| Migration Guides | Migrate from Google Business, Yelp |
| Governance | Project governance model |
We welcome contributions! Please see our Contributing Guide and Code of Conduct.
MIT License — see LICENSE for details.
Built for the AI-native era
Making local business data accessible to AI assistants everywhere
FAQs
AIDP Protocol - The open protocol for AI-accessible local business data
The npm package aidp-protocol receives a total of 10 weekly downloads. As such, aidp-protocol popularity was classified as not popular.
We found that aidp-protocol demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.