
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@agentseo/acp-adapter
Advanced tools
The official Agent Communication Protocol (ACP) adapter for AgentSEO. Allows OpenClaw agents to import AgentSEO tools directly.
The official Agent Communication Protocol (ACP) adapter for AgentSEO. Allows OpenClaw agents to import AgentSEO tools directly.
npm install @agentseo/acp-adapter
Set your API key:
export AGENTSEO_API_KEY="sk_live_your_key"
export AGENTSEO_PROJECT_ID="client-alpha"
export AGENTSEO_WORKFLOW_ID="nightly-refresh"
Import AgentSeoTools and attach them to your agent:
import { AgentSeoTools } from "@agentseo/acp-adapter";
// Example OpenClaw Agent
const agent = new OpenClaw.Agent({
name: "SEO Researcher",
tools: [...AgentSeoTools],
env: {
AGENTSEO_API_KEY: process.env.AGENTSEO_API_KEY,
AGENTSEO_PROJECT_ID: process.env.AGENTSEO_PROJECT_ID,
AGENTSEO_WORKFLOW_ID: process.env.AGENTSEO_WORKFLOW_ID,
},
});
Create smoke-test.mjs:
import { AgentSeoTools } from "@agentseo/acp-adapter";
const searchTool = AgentSeoTools.find(
(tool) => tool.name === "agentseo_search",
);
if (!searchTool) {
throw new Error("agentseo_search tool not found");
}
const result = await searchTool.execute({
query: "agentic seo",
limit: 3,
});
console.log(result);
Run:
node smoke-test.mjs
Exports the following tools as ACP-compatible objects (with JSON Schema parameters):
agentseo_searchagentseo_extractagentseo_analyze_serpagentseo_local_auditagentseo_content_gapagentseo_ai_overview_extractagentseo_local_visibility_trackagentseo_rank_trackagentseo_job_statusMost workflow tools support a sync boolean for a short inline wait. If the API still returns a queued job payload, call agentseo_job_status with the returned jobId.
AGENTSEO_API_KEY environment variable must be set in your runtime.AGENTSEO_API_URL (defaults to http://localhost:3000/api/v1).AGENTSEO_PROJECT_ID and AGENTSEO_WORKFLOW_ID for automatic attribution.FAQs
The official Agent Communication Protocol (ACP) adapter for AgentSEO. Allows OpenClaw agents to import AgentSEO tools directly.
The npm package @agentseo/acp-adapter receives a total of 8 weekly downloads. As such, @agentseo/acp-adapter popularity was classified as not popular.
We found that @agentseo/acp-adapter 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
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.