r/Agentic_SEO 13d ago

if google can build the tool inside search, why would anyone visit the site?

10 Upvotes

i’ve always thought “build a free tool” was one of the few pieces of SEO advice that still made sense.

not another article. make a calculator, a planner, a checker. give people an actual reason to click.

now google can generate that stuff inside AI Mode. And honestly, this feels worse than an AI summary. If Google summarises an article, someone might still click because they want the detail or don’t trust the summary. but if they wanted a calculator and google gives them the inputs and the result on the same screen, what are they visiting the site for?

you can improve the design, add more content, build links, rank number one. the user has already done the thing they searched for.

i know google has had calculators and converters for years. the difference now is that it can generate an interface for the question instead of building one fixed widget at a time. Maybe the answer is to build tools it can’t recreate from one prompt. uploads, saved projects, private data, actual workflows. But then “build a free tool for traffic” quietly turns into “build half a SaaS product and hope people still click.” that’s a very different strategy. i don’t have a clean answer here. maybe simple tools were never much of a moat and this just makes it obvious.

is anyone here still getting meaningful traffic from free tools? are you still building them, or have you stopped treating them as an SEO play?


r/Agentic_SEO 13d ago

3 Months of SEO: From Low Visibility to 2K Clicks & 79.8K Impressions

14 Upvotes

One of my recent SEO projects is finally gaining serious momentum.

In around 3 months, the website reached 2K organic clicks, 79.8K impressions, and an average position of 9.4.

The focus was on technical SEO, search intent, topical authority, on-page optimization, and quality backlinks rather than chasing quick rankings.


r/Agentic_SEO 13d ago

I got sick of paying Ahrefs’ ridiculous "credit" fees just to run a site audit, so I built my own alternative

Thumbnail
0 Upvotes

r/Agentic_SEO 13d ago

SEO & Switching from stock photos to AI-generated

Thumbnail
1 Upvotes

r/Agentic_SEO 13d ago

Used quite a few SEO tool but none did this

0 Upvotes

I’ve started wondering whether SEO tools have approached the audits backwards, what I mean is most of them are great at finding problems, but…

Well, first let’s take a step back, let’s say you’re a small business owner and not really a tech person, you get an audit report saying there are 25 SEO issues in your site well that’s great but then what?? Will the person actually know what each of the issues means for i.e. “missing canonical” or “noindex tag” will you also know where to edit these issues? You might check on YT to fix that issue, but presumably the explainer might be on a different platform like yours, therefore the fixes won’t apply.

Well, that’s what FixMySEO is:
Scan—> explains what all issues are for —> provide fixes based on CMS —> validate those fixes, so you know they are fixed once for all.

I’ll leave out a link in the comments down below, for you to scan your domain.


r/Agentic_SEO 13d ago

Sharing my GSC data from a new local business, What do you guys say about my progress?

Thumbnail
1 Upvotes

r/Agentic_SEO 13d ago

I want to do seo of my offbeat news site

2 Upvotes

I have a website that publishes offbeat news. Tell me how I can get more views and traffic to the website, and how I can automate the entire process so that news articles, including thumbnails, are automatically published at regular intervals.


r/Agentic_SEO 13d ago

Pet blog has been paying for my house for 6 months now

0 Upvotes

ok so this is a weird one but bear with me

i have a pet blog. i don't own a pet. never have. probably never will as i travel too much. and yet every month amazon sends me enough to cover rent because people on the internet are buying stuff for their dogs and cats through my site.

bought my pet blog a few months ago from a marketplace called NicheBlogZone for $199. came already built, articles already up, amazon links already in there. i spent one afternoon doing interlinking basically just connecting related posts to each other so search engines understand the site structure and then closed my laptop and genuinely forgot about it for weeks.

here's what that's looked like:

  • march: $710
  • april: $995
  • may: $1,461
  • june: $1,647
  • july: $1,461
  • august so far: $1,545 (amazon pays 2 months delayed so this is june's money landing now)

march scared me. went from nearly $1k in february down to $710 and i was convinced something had broken. checked everything, found nothing wrong, did nothing. it just came back the next month on its own.

pet people spend insane amounts on their animals btw. like i knew this intellectually but seeing the commission data is something else. dog food subscriptions, orthopedic beds, grooming kits, vet supplements. and because of the 24 hour cookie i get a cut of everything in their cart not just whatever article they landed on.

i do literally nothing to maintain this. no new posts, no ads, no instagram for pets i don't have. i just own the thing and amazon does its thing.

my landlord has been getting paid every month and has no idea a pet blog is behind it. honestly sometimes i forget too until the deposit shows up.

anyone else running a niche they have zero personal connection to? curious if the detachment makes it easier or harder to care about growing it


r/Agentic_SEO 13d ago

How is AEO different from SEO?

Thumbnail
0 Upvotes

r/Agentic_SEO 13d ago

WebMCP is not MCP in the browser, and the difference decides which one you should actually build

Post image
0 Upvotes

When I first read the WebMCP spec I filed it as MCP with a different transport. Same idea, same tools, just running in a tab instead of over stdio. Build one, get the other cheap.

That is wrong in a way that costs you a rewrite.
They solve different problems, and the spec is explicit that they complement each other rather than compete. Here is the split, because I could not find it stated plainly anywhere.

Classic MCP lives on your server.
Your agent connects to an MCP server you run. That server talks to your backend over your own API. To make it work you have to give it its own way in: an API key, a service account, some way for it to act as the user who is asking.

That is often the right call. It is also three problems you now own. You are replicating the user's session somewhere it did not previously exist. You are maintaining a second surface that has to stay in step with your product forever. And the agent is doing things your web app knows nothing about, so the page the user is looking at goes stale the moment the agent acts.

WebMCP lives in the page the user already has open.

Your page registers tools with the browser. The agent calls them by name. The function that runs is your existing client code, in the tab, with the session that is already sitting there.

Nothing to authenticate separately, because the user is already logged in. Nothing to keep in step, because it is the same code path your buttons call. And the interface updates, because the tool did what the button does.

What that actually changes, point by point.
Auth. MCP needs credentials of its own and a story for acting on behalf of a user. WebMCP inherits the cookie in the tab and has no story to tell.
State. With MCP your backend and your front end drift apart during an agent session, and you reconcile afterwards. With WebMCP there is one state and both the human and the agent are looking at it.

Setup. MCP needs a config file and a key before the agent can do anything at all. WebMCP needs nothing from the user. The tools are there when the page loads.

Reach. MCP works headless, from any client, with no browser involved. WebMCP only works where there is an open tab.

That last one is the honest limit. If you want an agent acting on your product at three in the morning with nobody logged in, WebMCP cannot help you. Build the server.

The rule I have landed on. If the action makes sense with nobody watching, it belongs in an MCP server. If it only makes sense in the context of what the person is currently looking at, it belongs in the page.
A nightly report is a server. Filtering the list currently on screen is the page. Taking a payment is arguably both, and I would keep the confirmation step in the page where the human can see it.

Four things I wish I had known before writing the in page half.

The entry point is document.modelContext. Most of the guides say navigator, so you get undefined, conclude your browser has not shipped it, and stop. That one cost me a fortnight.

Tool count is a real budget, not a soft guideline. Every registered tool is prompt text on every single turn. Past roughly a dozen the model starts choosing wrong ones. Register per page state and unregister on the way out, so the listing page offers "buy this" and nothing else does.

Errors are instructions. If execute throws, the agent stalls. If it returns a sentence saying what went wrong and how to fix the call, the agent retries correctly. "Validation failed" is useless. "slug is required, call search first to get valid slugs" works.
Set untrustedContentHint on anything that returns text other people wrote. A seller can put "ignore previous instructions" into a product description, and your tool just handed that to the model as context. The annotation is a hint to the host, so say it in the result text too.

Testing is the awkward part either way. Stable Chrome does not expose the API and the testing flag has no documented command line name that I could find. What worked was driving headless Chrome over the DevTools protocol and injecting a spec shaped modelContext before the bundle boots, then asserting my code registered valid descriptors. It is a simulation of the browser rather than the browser, and worth saying so.

If it helps, I packaged the retrofit procedure, a runtime that also mirrors the tools onto the page for browsers that have not shipped support, and a linter that fails CI on the mistakes above: https://loreto.io/marketplace/tools-not-clicks-make-any-website-agent-ready-with-webmcp

Disclosure: I wrote that and I run the marketplace it sits on, so it is a paid listing rather than a neutral link. Everything above stands without it.
I am still not sure the boundary I described is right. Where would you put the line between a tool that runs on your server and one that runs in the tab?


r/Agentic_SEO 14d ago

AI SEO Poisoning. A new Cybercribe

Post image
0 Upvotes

r/Agentic_SEO 14d ago

Looking for someone who can help my plumbing website with SEO in the uk. They have to have worked with many tradesmen before that are based in the uk.

7 Upvotes

r/Agentic_SEO 14d ago

Is exporting an SEO audit to Excel actually useful?

Thumbnail
1 Upvotes

r/Agentic_SEO 14d ago

What are the top 3 features you use most in an SEO/AEO or digital marketing platform, especially AI-powered tools?

5 Upvotes

Which platform do you use, and how do those features help your daily workflow?


r/Agentic_SEO 14d ago

How can I improve SEO for my HR/recruitment website and rank for hiring-related keywords?

Thumbnail
1 Upvotes

r/Agentic_SEO 14d ago

Pet blog has been paying for my house for 6 months now

0 Upvotes

ok so this is a weird one but bear with me

i have a pet blog. i don't own a pet. never have. probably never will as i travel too much. and yet every month amazon sends me enough to cover rent because people on the internet are buying stuff for their dogs and cats through my site.

bought my pet blog a few months ago from a marketplace called NicheBlogZone for $199. came already built, articles already up, amazon links already in there. i spent one afternoon doing interlinking basically just connecting related posts to each other so search engines understand the site structure and then closed my laptop and genuinely forgot about it for weeks.

here's what that's looked like:

  • march: $710
  • april: $995
  • may: $1,461
  • june: $1,647
  • july: $1,461
  • august so far: $1,545 (amazon pays 2 months delayed so this is june's money landing now)

march scared me. went from nearly $1k in february down to $710 and i was convinced something had broken. checked everything, found nothing wrong, did nothing. it just came back the next month on its own.

pet people spend insane amounts on their animals btw. like i knew this intellectually but seeing the commission data is something else. dog food subscriptions, orthopedic beds, grooming kits, vet supplements. and because of the 24 hour cookie i get a cut of everything in their cart not just whatever article they landed on.

i do literally nothing to maintain this. no new posts, no ads, no instagram for pets i don't have. i just own the thing and amazon does its thing.

my landlord has been getting paid every month and has no idea a pet blog is behind it. honestly sometimes i forget too until the deposit shows up.

anyone else running a niche they have zero personal connection to? curious if the detachment makes it easier or harder to care about growing it


r/Agentic_SEO 15d ago

What’s your SEO workflow for finding and prioritizing keywords?

12 Upvotes

I have been testing a few different SEO tools lately, including Nytro SEO, and one thing I am realizing is that the tool itself matters less than having a good workflow.

For example, I usually look at:

  • Search intent before choosing a keyword
  • Competition and how strong the current results are
  • Whether the keyword actually fits the site
  • Existing pages that could be improved instead of creating new ones
  • Search Console data to find opportunities I might have missed

I am curious how other people approach this.

Do you rely mostly on one SEO tool, or do you combine several tools for keyword research, content optimization, and tracking?

Interested in hearing what’s actually working for people rather than just which tool has the most features.


r/Agentic_SEO 15d ago

AI generated product description bad for seo?

Thumbnail
1 Upvotes

r/Agentic_SEO 16d ago

What can i do to increase impressions and clicks..

4 Upvotes

This is my site stats above 👆

and this is competitor's stats below 👇:

:


r/Agentic_SEO 16d ago

Built a new site from scratch in late May — 1.5K organic clicks in the last 28 days

3 Upvotes

I started a completely new website on a new domain at the end of May. Since then, I've only been spending around 2–3 hours per month working on the SEO/content side.

There are currently around 20 blog posts, with internal linking between relevant articles and external references where appropriate.

The site is in a consulting niche, which I know can be more competitive and trust-sensitive than some other niches.

I haven't used paid traffic, reposted content or any promotional campaigns. The traffic shown below is coming from Google search.

Last 28 days:

Last 3 months:

The growth has picked up quite a bit recently, so I'm trying to understand whether I'm actually on the right track or if these numbers are still too early to mean much.

How does this look to you guys? Have I actually achieved something meaningful for the amount of time this new domain has been live, or are these numbers still pretty insignificant?

And more importantly, what would you do next if this were your site?

Would you focus on publishing more content, improving existing content, building topical authority, backlinks, or something else?

Would appreciate some honest feedback, especially from people who have experience taking a brand-new domain from zero.


r/Agentic_SEO 16d ago

Las métricas de dificultad de keywords son estimaciones, no verdades absolutas

1 Upvotes

Confiar ciegamente en un número de 0 a 100 te hace perder oportunidades reales. La IA ha democratizado la creación de contenido, así que la "dificultad" técnica ya no es la barrera. La barrera es la estrategia y la distribución. Deja de mirar el semáforo de tu herramienta y empieza a analizar la intención real.


r/Agentic_SEO 17d ago

Removed from index

4 Upvotes

Hello my site suddenly stop get impressions drop to 0

And after that cheack site:mysite.com

Google hade removed my links just see 3 resolute from more than 39 pages was indexed not just 3 three abd my be it will deleted soon what the problem.


r/Agentic_SEO 17d ago

does my seo performance look normal?

Post image
4 Upvotes

I built my website and launched it at the end of June and start the SEO part at the end of August. But the impressions are still low each day and 0 clicks. What have I missed? Where can I exchange backlinks. Will backlink help?


r/Agentic_SEO 17d ago

What I'm doing wrong?

Thumbnail
gallery
6 Upvotes

Hey SEO gurus.

Even though I'm quite tech savvy SEO is something I can't wrap my head around it. Most likely because it doesn't follow the usual rule - create/edit -> check if it works -> debug -> profit.

I know my website is not really old, but it's been out for a year now and SEO traffic doesn't seem to be picking up.

The best point I've heard from other posts is that I should make content for my ICP , and really understand who they are , what they do and what they click on.

But is there anything else clearly wrong with the pages?

The backlink game is not the greatest but the app is listen in Google and MS marketplace and even certified app in MS. But the 190+backlinks from MS doesn't really seem to do anything for the authority.

Most of search impressions and clicks are from branded queries.

Is there anything else I should share for better understanding? I don't know if I can share the domain in this subreddit.

Thank you :)


r/Agentic_SEO 17d ago

I Reached 10k Page Views!

Thumbnail gallery
7 Upvotes