Category: Blog

Part of my mission in launching this blog is to provide my target audience, mainly marketers and small businesses who are looking for digital marketing tactics and strategies to grow their sites, with actionable and useful content that they can implement on their own. If you want to receive the best and exclusive content straight to your inbox, do your online business a favor by signing up to my newsletter.

  • How to Add WebMCP to WordPress (and Everything That Broke When I Did)

    How to Add WebMCP to WordPress (and Everything That Broke When I Did)

    WebMCP lets an AI assistant like Claude connect directly to your WordPress site and answer questions about your services, your blog, and where to guest post, instead of scraping your pages like a search bot. It hands the assistant a set of tools, so the agent talks to your site rather than guessing at your HTML.

    I added WebMCP to christopherjanb.com myself, on my real WordPress site, not a sandbox or a fresh test install. It took most of a day, it broke nine separate times, and I learned more from the breaking than from the parts that worked.

    This is the honest build log, with the actual fixes, so you can decide whether it is worth your time and skip the potholes I stepped in. By the end you will know what to upload, where it goes, and which nine things will try to stop you.

    What WebMCP Actually Is

    Here is the part most explainers get wrong. There are two different things called WebMCP, and they are not the same.

    The first is an open source library that works today. You drop a small script on your page, register some tools, and a visitor running an MCP client (like the Claude desktop app) can connect to your site through a local bridge. This is the version I used. The repo is github.com/jasonjmcghee/WebMCP, the project site is webmcp.dev, and I was on the 0.1.x release line.

    The second is an emerging web standard being built into browsers. WebMCP was published as a W3C Draft Community Group Report on February 10, 2026, and shipped as an early preview in Chrome 146 Canary behind a flag. It is co-developed by Google’s Chrome team and Microsoft’s Edge team, with native support across Chrome and Edge expected in the second half of 2026, while Firefox and Safari are engaged in the spec process but have not committed to timelines. That version needs no bridge and no setup: any AI agent visiting your page just sees the tools. It is the future, but it is not shippable yet.

    How WebMCP connects an AI assistant to your site: Claude Desktop, a local bridge, and your site's tools
    Figure 1. The library version I used. The agent calls your tools through a local bridge instead of scraping your HTML.

    Why does this matter? Because if you read about WebMCP and expect agents to start using your site automatically, the library version will disappoint you. It is opt-in and a little fiddly for the visitor. The standard is what makes it effortless, and that is still months out. Knowing which one you are dealing with sets your expectations correctly before you spend an afternoon on it.

    Why I Bothered

    I work in SEO and content for a living, so I spend a lot of time watching how people find things, and that behavior is shifting fast. More people now ask an AI assistant to do the searching and summarizing for them, and when an assistant reads your site, it reads it like a scraper guessing at your structure.

    WebMCP turns that guesswork into a clean conversation. Instead of an agent parsing my HTML and hoping it finds my services, it can call a tool that hands back exactly what I want it to know.

    Am I getting a flood of agent traffic from this today? No, and I want to be straight about that. Almost nobody is going to install a bridge to talk to my site right now. I did it anyway for three reasons that have nothing to do with today’s traffic: it is a working demo I can show the exact SEO and SaaS clients I want, it is an early signal that compounds with the GEO work I already do, and it is hands-on practice for the day a client asks me to build it. Being early and having actually done it is worth more to me than passive traffic I do not have yet.

    What I Built

    My site is a portfolio and services site, not an app full of buttons, so my tools are mostly read access plus one action. I exposed nine of them:

    Tool What it returns
    get_site_info Who I am, positioning, experience, and how to engage
    list_services The five services with one-line descriptions and URLs
    get_service Full detail on any single service page
    get_proof Client roster, publications, and testimonials
    list_posts The blog inventory, pulled from the sitemap
    search_posts Blog posts matching a keyword
    get_post The full text of any single post
    get_guest_post_opportunities My guest posting directory, optionally by niche
    book_call The booking link, framed to qualify the visitor

    The one insight I would tattoo on the wall: every tool description is conversion copy written for a language model, not a human. When I describe the booking tool, I am not writing UI text. I am telling the agent who the call is for and how it works, so that when someone asks an AI assistant “is this person a fit for my B2B SaaS site,” the assistant answers well and points them to my calendar. The tools are sales collateral aimed at a reader that happens to be an AI.

    I tested this exact scenario afterward. I told the assistant my B2B blog traffic was sliding and asked if I was a fit. On its own it pulled my site info, my services, and my proof, recommended my content reoptimization service, and surfaced the booking link. That is the whole point working end to end.

    The Setup, Step by Step

    Here is the actual sequence on WordPress. It is replicable if you want to follow it, and the setup steps map cleanly to HowTo schema if you mark it up.

    1. Get the script file. This tripped me up immediately, so save yourself the hunt: the file is not at the top of the GitHub repo. It lives inside the release download at src/webmcp.js, and the readme points you to the releases page rather than the source tree. It is browser-ready as is, no build step for a normal modern site.
    2. Upload that file to your site root so it loads at yoursite.com/webmcp.js. Root means the same folder as wp-config.php, not inside wp-content. Visit the URL directly afterward. If you see JavaScript, you are good. If you see a 404, it is in the wrong folder.
    3. Create a page with the slug mcp and write visible copy explaining what the page is and how to connect. This is the page agents and curious humans land on.
    4. Add your tool-registration script through WPCode as an HTML Snippet, set to load in the site-wide footer. The reason it has to be an HTML Snippet and not the post editor is coming up in a second.
    5. Set up your MCP client. For testing that means the Claude desktop app, a small config entry, and a connection token.

    That is the clean version. Now here is what actually happened.

    Everything That Broke

    This is the part you cannot get from a generic tutorial, because a generic tutorial never ran into any of it.

    Nine things that broke during the WebMCP WordPress setup
    Figure 2. The nine failures, each with its fix and lesson below.

    1. WordPress Mangled My Script

    I pasted the registration script into the page and it silently broke. WordPress has a feature called wpautop that wraps things in paragraph tags to tidy your writing, and it happily wrapped my script tags mid-function, turning working JavaScript into garbage. The fix was to stop using the post editor entirely and put the script into a WPCode HTML Snippet, which bypasses wpautop. Lesson: on WordPress, code does not belong in the content editor. It belongs in a snippet tool built to leave it alone.

    2. The Page-Targeting Setting Quietly Failed

    I wanted the widget to load only on my mcp page, so I used WPCode’s option to target that one URL. It did nothing; the matching logic checked the full URL in a way that never fired. Instead of fighting it, I set the snippet to load site-wide and put a one-line check at the top of my own script that runs only if the path ends in mcp. Lesson: when a plugin’s built-in targeting misbehaves, gate it yourself in code. You control that; the plugin’s UI you do not.

    3. The Command Could Not Find npx

    Once I moved to connecting the desktop client, the bridge would not start. The config told it to run npx, but the desktop app launches things with a stripped-down PATH, so a short command was not found even though it works fine in my terminal. The fix on Windows was to run it through the command-prompt wrapper instead of calling npx directly. Lesson: anything launched by a desktop app should assume a minimal environment and use full, explicit commands.

    4. The Config I Edited Was Not the Config It Read

    I edited my desktop config, saved it, restarted, and nothing changed. The app had moved to reading its config from a virtualized location after an update, while the edit button still opened the old file. I was editing a file the app no longer used. Lesson: after a desktop app update, do not assume the file you have always edited is the one being read. Confirm the path, or use the in-app editor that opens the live file.

    5. Invalid Token, on Repeat

    My daemon log started flooding with “invalid token.” The connection depends on both sides agreeing on a shared secret, and mine had drifted out of sync because the token regenerated while one side still held the old one. The fix was to read the real token straight out of the server’s env file and paste that exact value into the client config. Lesson: when two processes authenticate with a shared token, do not guess at it, read the source of truth and copy it verbatim.

    6. A Dead Process I Thought Was Alive

    Then came thousands of “connection refused” errors. The bridge kept trying to reach a server on a port where nothing was listening, because of a stale process-ID file: an old server had died, but its ID file was still on disk, so the bridge assumed a server was running. The fix was to kill every stray process, delete the stale state, and bring exactly one server up cleanly. Lesson: when something insists it is “already running” but nothing answers, hunt for stale lock or PID files first.

    7. My Tools Were Invisible Because of One Missing Word

    Everything connected, the client saw my server, but it reported zero tools. The tool definitions each carry a small schema describing their inputs, and mine were technically malformed. A no-input tool needs a schema that says “this is an object with no properties,” and I had given it a blank instead. My lenient local server registered them anyway; the desktop client validated strictly and silently dropped all nine. The fix was a proper, complete schema on every tool. Lesson: validate against the pickiest consumer, not the most forgiving one.

    8. The Connection Kept Timing Out Mid-Test

    The widget disconnects after about five minutes of sitting idle, for security. I did not know that, so every time I tabbed away to fiddle with the config, the channel quietly dropped, my tools deregistered, and I kept fixing problems that were not problems. The fix was to raise that timeout while testing and keep the tab in front of me. Lesson: when a system has an idle timeout, your slow, careful, switch-between-windows debugging style is the exact thing that breaks it.

    9. Registered Is Not the Same as Available

    Finally, even with everything connected, the assistant said it had no such tool. The connector showed up, but the tools were not loaded into the conversation, because the client treats “a connector exists” and “its tools are active in this chat” as two different states. The fix was getting the order right: bring the server up, connect the browser and register the tools first, then start the client, and test in a fresh chat. Lesson: connection and availability are separate, and the wrong order leaves you staring at a connector that does nothing.

    How I Actually Figured This Out

    The single most useful move in the whole process was not a fix. It was opening the log files.

    For a long stretch I was guessing, changing one thing, restarting, and hoping. That is slow and it teaches you nothing. The moment I started reading the client’s connection log and the server’s console output side by side, the real cause showed itself almost immediately. The invalid-token flood, the connection-refused errors, the empty tool list, all of it was written plainly in the logs while I was busy theorizing.

    If you take one thing from this, take that: when a multi-part system misbehaves, stop guessing and read what each part is actually saying. The answer is usually already on screen.

    Is It Worth Doing Right Now?

    Here is my honest call, because you deserve one before you spend an afternoon on this.

    As a traffic channel today, no. The library version is opt-in and technical enough that real visitors will not use it. If you are hoping this brings agent traffic this quarter, it will not.

    As a demo, a positioning signal, and practice, yes. I can now point a prospect at a live thing instead of a slide, it reinforces that I am tracking where search is going, and when a client asks me to build this, I have already bled on it once. For me, in my line of work, that is worth the day.

    If being early on AI search does not yet matter to your buyers, wait for the native browser standard. It is coming, it needs no bridge, and it will make all of this effortless.

    The Cheap Wins That Compound

    Whether or not you build the full thing, two smaller moves cost almost nothing and pay off into the native standard later.

    Add an llms.txt file to your site. It is a plain-text map of your key pages for AI systems to read, the way robots.txt is for crawlers. This folds directly into GEO work and is the highest-leverage thing on this list.

    Get your contact or booking form ready to be agent-callable. When the native WebMCP standard lands, that is the action that actually earns money, so it is where I would point your effort first.

    Where This Is Heading

    The thread running through all of this is simple. The way people discover and use content is moving from “a human reads a page” to “an agent uses a site on a human’s behalf.” WebMCP is an early, rough, honest attempt at building for that world. It broke nine times on me and I would still do it again, because I would rather hit these walls now, on my own site, than the first time a client is watching.

    If you want content and an SEO approach built for where search is actually going rather than where it was five years ago, that is the work I do. You can book a call with me and we can talk about your site.

    Frequently Asked Questions

    Is WebMCP the same as the standard coming to Chrome?

    Not quite. There are two: an open-source library you can use today (what this post covers) and a native browser standard, published as a W3C draft in February 2026, with Chrome and Edge support expected in the second half of 2026. The library needs a local bridge; the standard will not.

    Do I need to know how to code to add WebMCP to WordPress?

    A little. You upload one script, create a page, and add a snippet through WPCode. You do not write the library, but you will edit a tool-registration script and a small client config, and you will be calmer about it if a command line does not scare you.

    Will adding WebMCP bring me AI traffic right now?

    No. The library version is opt-in and a visitor needs a local bridge to use it, so almost nobody will. Treat it as a demo, a positioning signal, and practice, not a traffic channel, until the native standard ships.

    What is llms.txt and how does it fit?

    It is a plain-text file that maps your key pages for AI systems, like robots.txt for crawlers. It is far easier than a full WebMCP build, it supports your GEO visibility now, and it carries forward when the native standard arrives.

  • Screaming Frog MCP + Claude: How I Audited and Fixed My Site in a Day (and the One Thing the AI Got Wrong)

    Screaming Frog MCP + Claude: How I Audited and Fixed My Site in a Day (and the One Thing the AI Got Wrong)

    Screaming Frog’s MCP server lets Claude operate the crawler directly, read every export, and propose fixes, which turns a one-off crawl into an audit-and-fix loop. I pointed that loop at my own site, christopherjanb.com, and shipped real fixes the same day.

    The crawl covered 2,676 URLs in about ten minutes. From there I corrected 81 over-long page titles with a single change, wrote and published 65 missing meta descriptions, repaired 18 broken internal links, and cleared hundreds of redirect hops.

    Search Console added the context that mattered: the site drew roughly 409,000 impressions against only 638 clicks, so the real prize was fixing pages already being seen rather than publishing new ones.

    One finding mattered for a different reason. The audit reported zero structured data, and that was wrong. Catching that false alarm is the real lesson here: the AI is fast hands, but a human still owns verification.

    What Screaming Frog MCP Actually Is

    Screaming Frog is the crawler most people doing technical SEO already use. The new part is the MCP server, a bridge that lets an AI assistant like Claude start the crawl, pull the exports, and reason over the results without you clicking through a single tab.

    That sounds small. It isn’t. A normal crawl hands you a pile of CSVs to interpret. The MCP turns the crawl into a conversation: Claude runs it, reads the response codes, the titles, the redirects, the link graph, and comes back with a prioritized problem list.

    The mental model that matters: the AI finds and drafts, you approve and verify. Hold onto that, because it’s the whole point of the “one thing the AI got wrong” section below.

    The audit-to-fix loop: Crawl, Analyze, Fix, Verify
    Figure 1. The loop the MCP enables. The assistant finds and drafts; you approve and verify.

    The Crawl: 2,676 URLs in About Ten Minutes

    I kicked off the crawl from my own domain and let it run. About ten minutes later it had seen 2,676 URLs. The headline number isn’t the total, though. It’s the breakdown of what those URLs actually were.

    Of 408 internal HTML pages, only 193 returned a clean 200. The rest were noise a visitor never thinks about: 197 redirects and 18 hard 404s. Figure 2 shows the split.

    Internal HTML URLs by status: 193 live, 197 redirects, 18 broken
    Figure 2. Nearly half my internal HTML footprint was redirects or broken pages, classic migration debt.

    A crawl on its own tells you what’s broken. It doesn’t tell you what the breakage costs. So I layered in my Search Console export.

    Adding Search Console for the Reality Check

    The GSC data reframed everything. Over three months the site pulled roughly 409,000 impressions but only about 638 clicks, an average position near 37 and a sitewide click-through rate of 0.16%.

    Translation: plenty of content was being seen and almost none of it was being clicked. The crawl found the plumbing problems. Search Console found the money problems, and the fix was optimizing the pages already getting seen, not writing more.

    What the Audit Surfaced

    With both datasets in hand, Claude assembled the problem list in Figure 3. These are the issues, with real counts from my own site, not a generic checklist.

    Issues found: 1,913 redirect hops, 81 long titles, 72 missing metas, 18 broken links
    Figure 3. The fixable issues, by volume.

    The standouts:

    • 1,913 internal links were hopping through 301 redirects. One single link, an author byline, appeared 391 times pointing at a redirected archive. A navigation link missing its trailing slash accounted for another 204. Figure 4 shows where the hops concentrated.
    • 18 internal links were broken outright. A newsletter signup page that no longer existed still had 17 live links aimed at it.
    • 72 pages had no meta description, and 81 titles ran past 60 characters, both traced to template defaults rather than anything written by hand.
    Where the 1,913 redirect hops came from: 391 author byline, 204 nav link, 1,318 in-content
    Figure 4. Two template links caused 595 of the 1,913 hops, which is why a couple of fixes cleared most of them.

    The biggest opportunity was a click-through problem, not a ranking problem. One page sat at position 9.6 on 45,905 impressions and earned 14 clicks. Figure 5 shows that gap.

    One page: 45,905 impressions versus 14 clicks
    Figure 5. A page-1 ranking earning a 0.03% click-through rate. The single highest-ROI fix the audit found.

    The crawl even flagged a possible security issue: a broken image loading from a non-WordPress path that looked like injected spam. Worth a five-minute check on any site you inherit.

    The One Thing the AI Got Wrong

    Here is the part no tutorial includes. The crawl reported zero structured data across the entire site, and Claude surfaced it as a critical gap. On a site competing for AI Overview citations, that would be a real problem.

    Except it wasn’t true. My Yoast schema framework had been switched on the whole time.

    The tell was hiding in the report itself. It showed “Contains structured data: 0” and “Missing: 0” at the same time. If schema were genuinely absent, the “missing” count would have been high. Both reading zero means one thing: the crawler’s structured-data extraction was simply turned off, not that the schema was absent. A quick pass through Google’s Rich Results Test confirmed Article and Person schema were present all along.

    So here’s the line worth tattooing on the workflow: a crawl gives you leads, not verdicts. Confirm anything alarming in the live source before you act on it. The AI moved fast and was confident. It was also wrong, and only a human check caught it. (This is the part most “AI will do your SEO” takes quietly skip.)

    Fixing It in a Day

    Finding problems is the easy half. The reason this fit inside a day is that most of the fixes were bulk operations, and bulk is exactly what AI plus the right tooling is good at.

    Titles: One Change Fixed 81

    The 81 over-long titles all came from one place: a Yoast title template appending my brand name to every page. Editing that single template to drop the suffix cleared all 81 at once. I then loaded a few pages and confirmed the suffix was actually gone, rather than trusting the settings screen.

    Meta Descriptions: 72 Written, and a Gotcha That Cost an Hour

    Claude wrote all 72 missing descriptions, keyword-forward and within length. Publishing them is where it got interesting.

    A bulk-import plugin stalled, so I switched to a one-time code snippet. It “ran successfully,” yet the descriptions still didn’t appear on the live pages. The cause is a trap worth knowing: Yoast serves descriptions from its own “indexables” cache, and a raw database write doesn’t refresh that cache. Adding an indexable refresh plus a cache purge fixed it. A REST API check then confirmed 65 of 65 live (the other seven were thin pages I deliberately left alone).

    Broken Links and Redirect Hops

    For the broken pages I imported a set of redirects through a redirect plugin, formatted to match its CSV import.

    The 391-hop author byline had an elegant fix. Rather than surgery on theme templates, I simply re-enabled author archives in Yoast so the links resolved to a real page instead of bouncing through a redirect. The in-content link swaps went through another code snippet, after a search-replace plugin insisted there were “0 cells” to change. That mystery gets its own row in the table below, because the answer is genuinely useful.

    Shipped the same day: 81 titles, 65 metas, 18 broken links, 391 byline hops
    Figure 6. Everything above, found in a ten-minute crawl and fixed inside one working day.

    The Gotchas No Tutorial Mentions

    Every one of these cost me real time, and none of them shows up in a “how to crawl your site” post. The pattern across all five: the tool is confident, and confidence is not correctness.

    The gotcha What actually happened What to do
    Trusting the dashboard The WordPress admin shows values the live, cached page does not Verify in the source: REST API plus cache-busted page fetches
    Yoast indexables A raw meta write does not refresh Yoast’s indexable cache, so edits do not display Force an indexable refresh and purge the cache
    Dynamic block links Page-builder blocks generate links live, so a search-replace finds “0 cells” Fix at the block, template, or post status, not with find-and-replace
    External redirects A redirect pointing to a subdomain silently failed the CSV import Re-add external-target redirects by hand
    Block theme, classic menu The nav link “fixed” in the Site Editor was not the one being rendered Check which menu the header actually outputs

    Where the Day Actually Went

    The crawl was the fast part, roughly ten minutes. Claude’s analysis took a few more. The fixes themselves, mostly the meta-description and redirect verification loops, ate a few hours. Final checks were minutes.

    The split that made it work: I handed the AI the bulk generation, the data crunching, and the first drafts of every fix. I kept the judgment calls and the verification. That division is the actual skill, not the crawling.

    When This Workflow Works (and When It Doesn’t)

    This loop shines on established sites carrying migration debt, on bulk on-page cleanup, and on fast SEO audits where you need a prioritized list in minutes instead of an afternoon. It is just as strong for a content audit, where the job is deciding what to keep, cut, and merge.

    It will not write your strategy, choose your topics, or replace your judgment. The AI is the fast hands. You are the brain that catches the “zero schema” false alarm. Treat it that way and a day’s work genuinely fits in a day. Treat its output as gospel and you will ship its mistakes faster than you would have made them yourself.

    Frequently Asked Questions

    Do I need to know how to code to use Screaming Frog MCP with Claude?

    No. The crawl and analysis need no code at all. A few of my fixes used short snippets, but those were optional shortcuts, and Claude wrote them. You direct and verify; the assistant handles the mechanics.

    Can Claude fix the issues automatically, or only find them?

    Both, with a human in the loop. Claude found the problems, drafted the fixes (redirect files, meta descriptions, code snippets), and I applied and verified them. It is a co-pilot, not autopilot.

    How is this different from running Screaming Frog normally?

    A normal crawl ends with exports you interpret yourself. The MCP lets the AI run the crawl, read those exports, and return a prioritized, plain-language problem list, which collapses hours of manual analysis into minutes.

    What did the AI get wrong, and how do I avoid the same trap?

    It reported zero structured data when the site had schema all along, because the crawl’s extraction setting was off. Avoid it by confirming any critical finding in the live source, Google’s Rich Results Test, the REST API, a cache-busted fetch, before you act.

    The Takeaway

    The audit-to-fix loop, an AI driving the crawler and drafting the fixes while you verify, is where lean SEO operations are heading. The natural next step is pairing it with a topical map of what to build next. The edge was never the tool. It’s the judgment to know which findings to trust, and which to check twice.

  • TARS Chatbot Review: Engage and Convert Audience Automatically

    Last Updated on 3 years by

    tars chatbot review featured

    If you’re looking for a chatbot to help ease in our website visitors into becoming your customers or clients, then Tars is for you. It’s a simple, straightforward, yet highly effective tool that lets you create chatbots in minutes visually. This way, you can spend most of your time focusing on the results.

    In this TARS chatbot review, you will learn the value of chatbots in this age of user-site owner relationship.

    You will also find out how to use TARS, arguably one of the better chatbots in the market, to engage your visitors and increase visitors.

    To get you started, here’s an overview of the tool so you know what to expect when reading this post:

    Without further ado, let’s get on with this!

    A collaborative relationship between user and site owner

    Imagine this:

    You’re planning to go on a major cross-country road trip and you’re looking for hotels to book.

    After a few searches, you click on the first few links topping the results page, hoping to get more information about the hotels.

    But no matter how hard you look, you can’t seem to get all the information that you want.

    So, you decide to move on to the next website, and the next, until you find whatever it is that you’re looking for or you just lose interest.

    Think you’re the only one who has this habit when checking out different websites online?

    Well, according to this study, the human attention span is shorter than that of a goldfish.

    But here’s the thing: it’s not entirely their fault!

    Internet users these days have very little patience for slow-loading websites and are also less tolerant of even minor website fault when they’re dissatisfied with the products or services of a brand. Bad UX included.

    And they should.

    The problem with most websites these days is that they lack usability

    Sure, they may be packed with all the bells and whistles that make websites look good.

    But the design and layout of many landing pages don’t really grab the attention of their target audience. Neither does the content.

    So if you think about it, the relationship between the site owner and visitor work both ways!

    Therefore, whether you’re a blogger or business owner, your success lies in how well you can interact with your audience.

    It’s not enough that you have a message to convey or a product to sell. You also need to provide them with a personalized experience that is tailored to their specific needs and desires.

    So, what’s the most effective and easiest way to interact with your audience? For parents, this means having access to a platform that assists them in discovering and selecting local services tailored for mothers and children.

    This is where the chatbot comes in – a type of program that is primarily designed to quickly respond to messages.

    Their purpose is to engage in a conversation using templated and customizable messages for all sorts of situations.

    Why use chatbots in the first place?

    Ever since the first chatbot program in 1966, people have a fascination with this aspect of artificial intelligence.

    And with popular messaging apps like Facebook Messenger and WeChat running their own chatbots, more and more companies are starting to see the importance of using chatbots to help them address their customers’ needs.

    From media companies to airlines, and even healthcare providers, different brands are currently looking for innovative ways to use chatbots to increase customer engagement.

    But why are chatbots so popular?

    why are chatbots so popular

    According to this study, speedavailability are the two main reasons why consumers use chatbots.

    37% of Americans say that in the middle of an emergency, they would rely on a chatbot to give them a quick answer.

    64% of those surveyed also said that they think that the chatbot’s 24-service house is its best feature.

    Now, I know that integrating chatbots into your website can seem intimidating. Despite its long list of benefits, many companies are still hesitant to use robots or Artificial intelligence because of the wrong notion that it will eventually replace human effort.

    The truth is, it’s going to be a while before robots start to take over the world, or your website at least.

    Even though there are already countless tools you can use, in the end, it still boils down to how well you use these tools to provide a personalized experience.

    The relationships you build with your clients will always be more valuable than any automated system you use. What’s important is that you choose the right tool that will help you take full advantage of chatbot technology.

    There are countless chatbot apps available out there but for this review, we’re going to focus solely on an industry favorite called TARS.

    TARS chatbot review: What is it?

    tars chatbot review

    TARS* is a platform that lets users, even those who are programming “illiterate” to build all sorts of chatbots to help you engage with both your potential and existing customers better.

    Instead of building forms as a lead generation catch mechanism or a lead generation tool, you can build a chatbot that will help you get the information you need, without it being boring or cumbersome to your audience.

    What’s impressive about TARS is that it has already helped more than 9,000 bot creators build 16,000 chatbots and has completed over 12,000,000 conversations since it was first introduced to the world in 2016. And with tech giants investing heavily in AI come 2020, TARS or chatbot technology for that matter shows no signs of slowing down anytime soon.

    What makes TARS different from other chatbots?

    TARS is a drag and drop bot builder that promises to help you increase your conversion rate by 50%.

    It makes starting a conversation with your audience much easier and promises to give you results that static pages can’t deliver.

    Since the platform is pretty straightforward to use, all you have to do is sign up for an account to start building and customizing your first bot.

    While TARS may seem a bit more expensive than other chatbot systems, it’s packed with more features that will make all your marketing efforts worth it.

    If you’re working with AdWords PPC ads, TARS is the only chatbot system that you can integrate into your campaigns. Simply direct them to the specific chatbot conversation URL instead of your usual landing page to get the conversation started.

    What’s more, all your leads will be stored in the TARS Analytics dashboard for your future use.

    With the TARS chatbot platform, you’ll never have a lead slip through your fingers ever again!

    How to use TARS?

    One of TARS’ biggest selling points is that anyone can quickly get the hang of it. Just follow this step by step guide to create your very first chatbot from scratch.

    Step 1: Once you’ve signed up for an account, simply go to the dashboard and click on the “Create a new ChatBot” to access the Bot Canvas.

    step 1 tars

    Step 2: Before building your bot, make sure to give it a name. You can also choose to edit a bot from the pre-made templates.

    step 2 tars

    Step 3: Plan out your chat flow and start adding gambits. A gambit is a single piece of conversation between the bot and the user.

    step 3 tars

    Step 4: Make changes in a gambit by clicking on it and adding questions and statements based on the information that you want to get from users.

    step 4a tars

    The TARS bot builder offers you different types of Input UI, from standard text input to date scroller input.

    step 4b tars

    Step 5: To make the conversation flow, you will need to add more gambits and connect them to each other. This is the part where you can really personalize your interaction with your audience.

    step 5 tars

    Step 6: Ready to end the conversation? Then click on the “Auto Page Redirection” option on the Text Input dropdown menu.

    step 6 tars

    Here, you can choose to set a landing page to where the bot will redirect the users after the chat ends. You can leave the space blank if you just want the bot to end without any redirection.

    Step 7: Time to show your creation to the world! Hit the red “Deploy Bot” button and wait for the live link to turn blue.

    step 7 tars

    Try out your bot to check if it works just how you want it. If you need to make any revisions to the chat flow, be sure to click the “Deploy Bot” button again to save and apply the changes.

    Step 8: Sharing is caring. You can share your chatbot via its web link or by embedding it to your website. Just copy the code and insert it before the tag of the page where you want to show on your website. This will place the chatbot button in the bottom right corner of the page. It’s really that easy!

    step 8 tars

    In case you didn’t notice, I have a TARS bot set up at the bottom right side of my site. Click it to activate and chat with it!

    If you cant’ view it, click here to load it on a new window.

    Now that you basically know how to build your first ever chatbot, here’s one way that you can put this newly-acquired skill to good use.

    How to use TARS for your lead generation?

    85% of marketers believe that lead generation is the most important step in any marketing strategy. WIthout a solid plan for catching leads, you’re missing out on the chance to make some real money online.

    The good news is, there are plenty of ways that you can generate leads online. The bad news is, some of these techniques aren’t as effective as they used to be. Case and point the static landing page with a built-in form.

    What used to be a brilliant tool is slowly losing favor among expert marketers because frankly, there’s nothing exciting about it anymore.

    People have become so used to seeing a pop-up form on every website they visit that they have started to ignore it.

    Unless you can use your web form to make “an offer that your target audience can’t refuse”, it’s going to take you a while to grow your subscriber list.

    The great thing about TARS is that it engages your target audience with a conversation.

    This doesn’t just make the interaction much more personal, it also adds a human element to it.

    With TARS, the qualification process is quicker and more effective because your leads aren’t dying of boredom as they fill out long forms. The chatbot makes them feel more at ease because it’s as if they’re only talking with an old friend.

    Just take a look at how TARS simplified lead generation for Babychakra.com

    Before they signed up for TARS, generating and converting leads was a long and tedious process.

    They used a form on their website with only three fields to boost their conversion rate.

    For every lead, they would make a series of phone calls and emails to try to convert it.

    Because the entire process required immense effort from their part, Babychakra.com tried using a form that asked for more input.

    While it significantly cut their manual efforts, it also killed their conversion rate. Their prospects simply didn’t have the time or patience to complete the long form.

    Using the TARS chat UI, BabyChakra designed a simple and intuitive chatbot that collected all the information they need from their prospects.

    babychakra case study

    Since answering to a chatbot feels like less work than answering a long form, their prospects were more than happy to provide the information that the company needed from them.

    BabyChakra was able to grow their conversion rate three times over and reduce their manual efforts, all thanks to the chatbot they built on TARS.

    TARS Pricing

    tars chatbot review - pricing

    For those who want to give TARS a go, you can enjoy a 14-day FREE trial with no credit card info needed.

    Monthly fee starts at $99 for 5 chatbots and 1,000 chats per month.

    There’s also a custom plan for agency accounts, which includes access to the entire TARS platform and a dedicated chatbot manager who can help you make the most out of the system so you can maximize your ROI.

    What are the pros and cons of Tars?

    Pros

    • The bot builder is very intuitive and easy to use. You can build and launch your first chatbot on your website in as short as 2 hours from your signup.

    • The TARS community is thriving with bot builders who aren’t just supportive, but they’re also involved, ambitious, and very creative with their use of TARS.

    • The support and development team are responsive and helpful. Developers are constantly releasing new features that let users take full advantage of the TARS platform.

    Cons

    • Users have limited options when it comes to customizing the aesthetics of the TARS user interface to suit their preference.

    • The Bot Canvas has the tendency to become cluttered when building complex chatbots. May require basic development skills if you’re looking to integrate API in your chatbots.

    • Some bots may take a while to load, especially when they’re embedded on a different landing page system.

    TARS chatbot review: Verdict?

    TARS is perfect for entrepreneurs, bloggers, and startup owners who are looking for a more engaging and innovative way to reach out to their audience.

    Instead of building a form or a survey for customers to get in touch, chatbots offer a much effective solution to get people involved.

    Even if you have limited programming knowledge, you can get TARS to work wonders for you!

    Video created using InVideo

  • Blog Promotion Tactics Every Digital Marketers Should Know

    Blog Promotion Tactics Every Digital Marketers Should Know

    The world is following digital footprints these days and that makes people’s lives digitally convenient and flexible. Businesses are going online, and concepts like digital marketing are helping them effectively. One of the ideal methods for organic digital marketing these days is blogs. Blogs are preferred by marketers these days for promoting things. But the important thing that most don’t realize is blog promotion.

    Writing blogs and generating content is an ideal way for digital marketing. The promotion of blogs is also very important for digital marketers to justify the efforts that they have paid in creating compelling articles and blogs. Writing and publishing the blog means you are already halfway in your digital marketing campaign, and if you want to make your efforts count, you need to put in efforts for blog promotion.

    Current Scenario Of Blogging World

    The blogging world is growing at a rapid pace, and it is one of the effective methods to kick start your digital marketing campaign, and most digital marketers rely on it these days. The number of blogs is increasing rapidly, and today there are as many as 500 million active blogs in the internet world. Blogs are very important strategies for digital marketers, and one of the strategies most of them are missing to integrate is blog promotion.

    Blogging is an essential part of businesses running online these days. It is important to inspire, educate and influence people about the products and services that businesses offer, and all these things can be easily done by writing blogs. The organic way to generate conversions and traffic to your business site is important and blogs do it for you. Thus, to make your blog visible to all audiences, you need different tactics for blog promotion on your blog.

    Importance Of Blog Promotion for Traffic to Your Blog

    Some of you already have an idea of why blog promotion is important and how it can affect your digital marketing campaign. It is important that your blog has more reach, which will increase the visibility and traffic, and that is the ultimate thing you desire from your digital marketing efforts. But if your blog is not able to get the views, then all your efforts will be ruined, and it is the situation where blog promotion is important.

    Now that you already know the importance of promoting your blog posts, the question is, how would you do that. Hence, we will further discuss the different tactics for blog promotion that every digital marketer should follow for better digital marketing campaigns.

    Preparation

    Before diving into the various tactics for blog promotion, it’s essential to lay a solid foundation. Preparation is key to ensuring that your promotional efforts are effective and yield the desired results. Start by understanding your target audience. Who are they? What are their interests and pain points? Knowing your audience will help you create content that resonates with them and addresses their needs.

    Next, set clear goals for your blog promotion efforts. Are you looking to increase traffic to your blog, boost engagement, or generate leads? Having specific goals will help you measure the success of your promotional activities and make necessary adjustments along the way.

    Finally, ensure that your blog is optimized for search engines. This includes using relevant keywords, creating high-quality content, and ensuring that your blog is mobile-friendly. By laying a strong foundation, you’ll be better positioned to implement the various blog promotion tactics discussed in this article.

    Ways to Promote Your Blog: Tactics To Check Out

    The strategies for promoting blogs are somehow similar to the way you are running digital marketing campaigns. One effective way to promote your blog is by sharing your content on social media sites. As the blogs are running in the internet world and the readers are from the digital population, you need to find ways to attract those digital audiences so that they give a look at your blogs. There are different ways associated with the digital marketing concept, and hence, for blog promotion, you need to initiate digital marketing in a new way.

    1. Active Blogging

    Active blogging is one of the effective and organic ways to promote your blog; the more you write a blog, the more people will engage with your site, which will increase the number of readers. It is said that continuous blogging always helps, and the one who regularly publishes blogs will get more traffic and readers compared to the one who publishes quite fewer blogs. It is one of the tactics that digital marketers can keep in mind and work on, and it is also one of the organic ways for blog promotion. 

    2. Integrate Keywords

    Search keywords can be very beneficial for promoting the blog as the content that you have written will focus on the popular search words related to your content. Using the keywords will allow your blog to elevate in the search engine ranking, ultimately increasing the traffic. 

    The keyword integration and grouping is the best tactic for improving the performance of your blog. Search engine rankings matter the most for the success of your blog, and that is the reason why search keywords play a vital role. 

    3. Take Advantage Of SEO

    Search engine optimization is one of the important methods for digital marketers to succeed. It is the ideal way to make your digital marketing efforts successful. The best use of SEO can be done in making your blog rise and shine in the internet world. The on-page SEO tactics can be a brilliant idea to promote the blog organically. There are multiple SEO guidelines, and following them will enhance your blog in search engine rankings. 

    SEO has multiple advantages, and businesses running in the online world are taking healthy advantage of SEO. It is really effective in boosting the online presence. Referring to one of the sources of Elluminati Inc. about SEO for restaurants will give you a clear idea of how online ventures are best using SEO for boosting their online presence, and blog is one of their mainstays.

    Just like digital marketing, social media is also one of the ways to promote blogs. There isn’t any doubt about the popularity of social media and its capability of influencing people easily. Social media can be best utilized for blog promotions, and it is the practice that most companies are following for promoting their blogs. Social media offers multiple features, and one can easily drag customers’ attention and hence, an effective social media strategy for promoting blogs.

    Generating eye-catching and questionable phrases to pop up people’s minds and marketing the blogs can be a very effective idea. Hence, social media can be effectively utilized for promoting the blog and helping your blogs achieve what they deserve. 

    4. Social Media Promotion

    Social media promotion is a crucial step in preparing your blog for promotion. Before you start promoting your blog, make sure you have a solid social media presence. This includes creating profiles on relevant social media platforms, such as Facebook, Twitter, Instagram, and LinkedIn. Ensure that your profiles are complete, including a profile picture, cover photo, and bio that clearly states your blog’s niche and purpose.

    Next, optimize your social media profiles for search by including relevant keywords in your bio and profile information. This will help your profiles show up in search results when people search for topics related to your blog. Additionally, regularly update your profiles with fresh content to keep your audience engaged and attract new followers.

    Finally, connect your social media profiles to your blog by adding social media buttons to your blog’s sidebar or footer. This will make it easy for readers to share your content on their social media profiles, which can help drive traffic to your blog. Engaging with your audience on social media by responding to comments and messages can also foster a sense of community and encourage more shares and interactions.

    5. Email Marketing

    Email marketing is also one of the better ways to improve the performance of your blog. A proper email marketing plan and a list are required to execute your email marketing strategies. Email marketing will be beneficial in direct engagement with the readers of the blog. 

    One can write an exceptional email to get people’s attention and easily integrate the blog link in the email body. One can even add graphics and images in the email to make people interested in reading your blog. Email marketing is definitely one of the tactics that marketers need to integrate for desired results. 

    6. Q & A

    Many sites on the internet allow the users to ask questions, and anyone voluntarily can answer the question. These are basically Q&A platforms open for all. These are the platforms that can be effectively used for marketing your blog in front of the digital population. 

    You can find questions related to your blogs on these platforms and innovatively craft answers to mention the blog details effectively. In this way, people curiously visit your blog to get the answers they are looking for. One of the most popular examples of Q&A platforms is Quora

    7. Influencers on Social Media

    Influencer marketing is the trending concept in the marketing world that will surround you with a healthy network of people in the internet world. Influencers have a strong network of people in the internet world on different platforms, generally social media. They can easily recommend and market your blog to numerous people, and there are people who love to explore different articles in the internet world. 

    There are a lot of influencers popular for certain demographics as well as in certain geographical locations with which you can collaborate for kickstarting your blog promotion. It is the tactics that you must follow, and it is the concept that is trending for its quick results. 

    Paid Advertising

    Paid advertising is a great way to promote your blog and reach a wider audience. There are several options for paid advertising, including Google AdWords, Facebook Ads, and LinkedIn Ads. Each platform has its own strengths and weaknesses, so it’s essential to choose the one that best fits your blog’s niche and target audience.

    When creating a paid advertising campaign, make sure to set clear goals and target specific keywords related to your blog’s content. This will help ensure that your ads are shown to people who are interested in your blog’s topic and are more likely to click on your ads. Craft compelling ad copy and use eye-catching visuals to grab the attention of your target audience.

    Additionally, make sure to track your ad’s performance regularly and adjust your campaign as needed. This will help you get the most out of your paid advertising budget and ensure that your ads are driving traffic to your blog. Use analytics tools to monitor key metrics such as click-through rates, conversion rates, and return on investment. By continuously optimizing your campaigns, you can achieve better results and maximize your promotional efforts.

    Important Considerations

    Blogs are a very effective medium of marketing, and the success of your blog is very important for digital marketers. One of the main mediums and faces of digital marketing is the blogs that you are writing. Also, blog writing requires time and effort, and if it doesn’t even reach your target audiences, all your valiant efforts will be ruined. Digital marketing doesn’t end when you write and publish the article. 

    The main actions need to be taken afterward to justify the efforts you have made in writing the blog. All the methods or tactics mentioned earlier in the article are the commonly used tactics that give better and effective results for your blog promotion. Hence, you need to keep finding your ways and move ahead in promoting blogs. 

    Conclusion

    Digital marketers are often worried about making their digital marketing campaigns more and more successful. One of the reasons why their digital marketing campaign is not offering better results is the blog promotion. Most marketers make a common mistake because they don’t care much about the promotion of blogs. 

    It is always better to make twice the effort, and the same goes for promoting the blogs. As you have already made efforts in writing blogs, and secondly, you will make efforts for blog promotions. Hence, twice in efforts will improve the digital marketing campaign effectively, and you can achieve the ultimate success you need for your venture. 

    Brijesh Vadukiya

    Brijesh Vadukiya is a tech activist and avid blogger. My major concern is to educate people who are interested in technology. I am passionate about helping people in all aspects of SaaS solutions, online delivery business, digital marketing and other related topics that make tomorrow’s world better. I am fond of writing useful and informative content that helps brands to grow business

  • Blogger Outreach Basics: How to Grow Your Readership

    Blogger Outreach Basics: How to Grow Your Readership

    Building a readership is one of the core goals of blogging. However, it takes a lot more than just writing amazing content—it’s about making connections and showing the world that your blog is worth reading.

    Keep in mind that there is probably a surplus of quality bloggers in the same niche as yours. In fact, you may not even be the best blogger in your field or industry. So if you want to win more readers, you need to focus on building trust and gaining exposure from targeted traffic channels such as the first page of SERPs (Search Engine Results Pages) and other authoritative blogs.

    What is Blogger Outreach?

    Blogger outreach is a form of influencer marketing that involves reaching out to influencers who have a substantial follower base and persuading them to share your product or service with their audience. It is a process of contacting the right person with the right offer, ensuring that both parties benefit from the collaboration. Unlike spam, blogger outreach is about personalized and relevant communication. It’s about building genuine connections and offering value, rather than just sending out mass emails and hoping for a response.

    Definition and Benefits of Blogger Outreach

    Blogger outreach is a strategy used by successful bloggers to grow their audience and increase their online presence. The benefits of blogger outreach are manifold. Firstly, it helps in building relationships with influencers in your niche, which can lead to long-term collaborations and mutual growth. Secondly, it increases your website’s authority by associating your brand with well-respected figures in your industry. Lastly, it drives more traffic to your site, as influencers share your content with their engaged audience. By borrowing the trust that influencers have built with their followers, you can effectively promote your own business and reach a wider audience.

    Why Do You Need to Do Blogger Outreach: What is Blogger Outreach?

    Imagine you’re planning a huge party in an amazing venue. You shouldn’t assume that droves of people will attend just because you spent a boatload of money on food and decorations. Remember that you still need to promote the event and send out the actual invitations.

    Sure, you can invite your close friends, which are a few people guaranteed to arrive. But if you want to attract a large crowd, you need to invite popular people and leverage their network.

    Your blog should be a huge party ~ Blogger Outreach Basics

    When holding a party, you invite the cool and popular kids so they will do the inviting on your behalf. Since cool kids in your school have the influence that you do not have, there is a great chance that a lot of people will attend your party. The same concept applies to your blog — you need to be in the good graces of popular bloggers so they can influence their readers to follow your blog. The question now is: how are you supposed to do that?

    In blogging, these are the influencers with an established readership. That’s where blogger outreach comes into play. Say, if you want to bring a thousand people to your site, you connect with at least five bloggers with an audience base of 200+ each rather than send a thousand invitations by yourself. On top of the added exposure, people will be more willing to trust your blog as much as they trust the influencer that linked to you.

    In blogger outreach, however, a simple invitation is not enough to bring influencers to your cause. You also need to offer value in your proposition and show them that your blog is worth mentioning.

    Offer Trust + Provide Value = Successful #Blogger Outreach

    But first, you need to plan your method of approach. Unfortunately, this leads to the biggest criticism in blogger outreach.

    The Biggest Criticism about Blogger Outreach

    Blogger outreach took the online marketing world by storm a few years back. Not only is it effective for bringing people to your blog, but others also used it in link-building to earn higher rankings in search engine results. But as the practice gained popularity, the real essence of outreach was lost in a scramble for the most valuable connections.

    Keep in mind that there is a fine line between “outreach” and just “spam”. Plenty of bloggers and marketers crossed the line by utilizing templates and relying too much on outreach automation tools to build connections between them.

    Of course, blogger outreach tools can still be useful in the right hands. In fact, some of these tools will be mentioned later in this article. However, a lot of inexperienced marketers use them as an excuse to turn “outreach” into “sending a bunch of emails and hoping to get a response.” As a result, influencers are more compelled to decline since they know there’s nothing in it for them.

    Remember that your target influencers are probably already bombarded with outreach emails from other bloggers. That said, they will quickly notice if an email follows a template. Typically, it starts with a compliment, followed a short statement about a particular article, and then ended with a subtle request to link to a separate blog post. Here’s a skeleton of the “generic” outreach email:

    blogger outreach template ~ Christopher Jan Benitez

    Hey there, I read your post and think it’s awesome. → The usual compliment

    I saw your post and think it’s pretty cool. I noticed it links to this site. → The short statement

    I wrote a similar article that’s similar to the ones you link to. → The request

    Please leave a link to it somewhere in your article. → Just a sign of desperation

    How to Do Blogger Outreach the Right Way

    Blogger Outreach Basics Infotext

    Blatantly using a template for blogger outreach is one of the worst things you can do. Aside from this, below are some of the things you need to remember:

    1. Classify Your Target Influencers

    Keep in mind that it’s not a reliable strategy to focus only on the most popular influencers in your niche—especially if you’re just starting out. These “big name” influencers probably receive tons of outreach emails a day, so there’s a small chance that they’ll even open your email before their virtual assistants delete them.

    On the other hand, targeting the “newbies” in your industry is a strategy you don’t want to keep for the long haul. Since they don’t receive a lot of requests from other bloggers, they are the ones who will most likely read and respond to your outreach email. But due to their limited follower base, they’re only good for giving your blog a small increase in traffic.

    Classify Your Target Influencers ~ Blogger Outreach Basics

    Determine the criteria for the type of influencers you want to reach out to receive the best results for your blogger outreach campaign.

    What you want is to target the “guru level” influencers with a decent amount of readership and social following. Although they may have virtual assistants, there’s still a reasonable chance that they’ll read your outreach email. They also tend to respond well to valuable outreach propositions since they also seek growth for their blog.

    2. Personalize Your Subject Line

    Always remember to treat your target influencers differently. You need to personalize each outreach email specifically to each influencer to give them a sense that they’re being contacted as humans. First, make sure you create a personalized subject line to make the email stand out in their inbox. Whatever you do, avoid using a compliment as a subject line as it immediately raises a red flag. Remember that no one crafts an entire email just to give a compliment.

    Instead, you need a subject line that’s straightforward yet lacking at the same time. Give just enough information to pique their interest and compel them to read the entire email. In other words, never give it all away from the beginning.

    For example, if you want to be linked from a blog on web design, you can use something like: On-Page SEO at web design blog.

    At first look, the influencer will know that the email is about a “web design blog” and “on-page SEO.” However, they can never be sure if it’s an agency giving an SEO audit for their blog, a blogger trying to put together tips from experts, or a reader inquiring about a particular area of web design.

    3. Remove Raw URLs

    Simply put, a raw URL is a good indication that an email is constructed using a template or an outreach software. Remember that you need your target influencers to feel more than just a name and email address in a spreadsheet. They deserve more than just emails that contain copy-pasted links content and links.

    If you’re trying to refer to another post they did in the past, it’s not a good idea to post a link to it either. You can just refer to it naturally like “a blog post about responsive design a week ago”—the influencer will get it.

    But if you need to add a link, especially if you’re referring to the post you want the influencer to link to, make sure it is properly embedded using the post title as the anchor text. Doing so allows you to express your intentions as genuinely and discretely as possible. Despite this, you should never ask them directly to share a link to your post, which leads to the next point:

    4. Offer Value in Return

    A common mistake that bloggers make during outreach is to promote a post just because it is “similar” to what the influencer has done or linked to in the past. Why? Because there’s no point of sharing something that they’ve already seen before.

    Instead, you must highlight that the post you’ve written includes details they may have missed, corrected mistakes they’ve made or exposed the subject from a whole new angle. That’s how you offer value to your target influencers.

    A classic example is the Skyscraper Technique employed by Brian Dean. He took a link-worthy page like Google Ranking Factors at Vaughn’s Summaries

    Google Ranking Factors SEO Checklist Vaughn s Summaries

    …and made a better version of the same content in his blog.

    Google Ranking Factors The Complete List - Brian Dean at Backlinko

    Brian was able to add value to an already valuable post by making the layout much more pleasing to the eyes and providing more SEO factors than the original post.

    After reaching out to bloggers in the promotion of his post, Brian enjoyed a 17% rate of bloggers linking back to his site.

    In other words, make sure the outreach email focuses on what the original post didn’t have. If they want to be an authority on the latest news and thorough knowledge in any subject matter, then they will surely appreciate your effort in supplying them with new information. As long as your content adds value to what the influencer already has, you may have even your very own software or product.

    5. Time It Right if You Want To

    Lastly, remember that timing is very important for a successful blogger outreach strategy. While it’s a good idea to reach out to influencers just hours after they post a new article, they probably won’t work on an article they’ve already updated recently. Instead, they will focus on something else entirely, and it will take weeks for them to get back to the post you’re interested in.

    If you contact them too late, your outreach email will be buried deep in their inbox by the time they’re interested in taking suggestions. That’s why you need to look for content that’s posted only up to a day ago or find something a few months back. Either way, you need to use tools that enable you to filter your content research according to date.

    Finding and Researching Bloggers

    To find influential bloggers, you can start by using AllTop, a hand-curated directory of blogs that categorizes them by industry. This can give you a broad overview of the top blogs in your niche. Additionally, you can search for keywords related to your industry on Google to discover blogs and authority sites. Another powerful tool is BuzzSumo, which allows you to find influencers by searching with broad keywords and sorting the results by metrics like Retweet Ratio. Lastly, checking out “Best of” blog posts can help you identify high-quality blogs in a specific category, giving you a curated list of potential influencers to reach out to.

    Use Google and Tools like Ahrefs and BuzzSumo

    You can use Google to find relevant influencers by searching for keywords related to your niche. For instance, if you’re in the fitness industry, searching for terms like “top fitness blogs” or “best fitness influencers” can yield valuable results. Tools like Ahrefs and BuzzSumo can further refine your search. Ahrefs can help you find bloggers who have written extensively about topics related to your niche, providing insights into their backlink profiles and content performance. BuzzSumo, on the other hand, can help you identify influencers who have shared content similar to yours, allowing you to target those who are more likely to engage with your content.

    Approaching Bloggers

    To approach bloggers, you need to make a first contact and build relationships with them. Start by following them on social media platforms like Twitter, Instagram, or LinkedIn. Engage with their content by liking, commenting, and sharing their posts. This shows that you genuinely appreciate their work and are not just looking for a quick favor. When you’re ready to reach out, send a personalized email introducing yourself and expressing your admiration for their work. Mention specific posts or projects of theirs that you found particularly valuable. This personalized approach can help you stand out and make a positive impression.

    Make a First Contact and Build Relationships

    When making a first contact with a blogger, it’s essential to be personal and relevant. Begin by commenting on their social media posts or blog comments to add to the discussion meaningfully. Sharing their content on your social media platforms is another great way to show that you value their work. When you decide to send an email, make sure it’s personalized. Address them by name, reference specific content they’ve created, and explain why you’re reaching out. Show that you’ve taken the time to research their interests and understand their work. This thoughtful approach can help you build a genuine relationship with the blogger, increasing the likelihood of a successful collaboration.

    Tools to Help You Do Blogger Outreach

    Finally, it’s time to familiarize yourself with the tools you need for a productive blogger outreach campaign. Bear in mind that even after learning everything you can about blogger outreach, you could still be left not knowing how to get started. That’s why you need to start by building your toolset and learning how to use them.

    Learn how to use @buzzsumo @streak and LinkHunter for #blogger outreach

    1. BuzzSumo

    An indispensable tool in any blogger outreach campaign, BuzzSumo lets you identify influencers and their most popular content.

    Once you have subscribed for an account, go to the Influencers > Twitter Influencers tab and type your keyword in the search bar.

    content marketing Twitter Influencers ~ BuzzSumo

    The results will show you the different influencers related to the keyword you entered.

    On the right side of the results are factors that will help you determine the influencers you should target for your blogger outreach strategy.

    • Page Authority – If there is a link to a page included in their Twitter Bio, BuzzSumo will show its Page Authority, which determines the page’s trustworthiness based on Moz’s algorithm. The higher the score, the better.

    • Domain Authority – Similar to Page Authority, Domain Authority refers to the trustworthiness of the domain and not just the page.

    • Followers – Counts the number of followers the influencer has. The more followers the influencers have, the more reason you should reach out to them.

    • Retweet Ratio – Rate that influencers retweet the tweets of others.

    • Reply Ratio – Rate that influencers reply to the tweets of others

    • Average Retweets – Number of times influencers retweet in a day

    These metrics will help give you a better idea of the influencers in your niche.

    Assuming that BuzzSumo will show hundreds of results (which it probably will), you can filter out the type of influencers you want to see.

    Filter by Type ~ BuzzSumo

    You can further filter your list by determining the criteria for the factors listed in the results.

    For example, you want to reach out to influencers with at least 10,000 followers, 5% retweet ratio, 5% reply ratio, and five average retweets. This way, you have a chance of striking a connection with the influencers (based on the reply and retweet ratio) and get more people to learn about your latest blog posts (assuming that you got the influencer to share your post on their social media).

    Tick the box of influencers whom you want to target. Once done, you can save the influencers in a list.

    Save influencers ~ BuzzSumo

    You can export the list by going to Influencers > Outreach Lists tab if you want to refer to the list offline or upload it to a different platform.

    Take note that BuzzSumo is designed specifically for content research, just like SE Ranking is for SEO research.

    It helps you siphon topic ideas and popular content formats in a specific industry. It also analyses content from the most popular bloggers and content sources, which is why it can be used to identify key influencers in a particular niche.

    Using BuzzSumo for content research about blogger outreach, you can view the links shared by the influencers.

    Outreach Lists ~BuzzSumo

    You can also analyze the links shared by the influencers.

    Analyze links ~ BuzzSumo

    Having both data at hand, you can determine the kind of posts that you need to share to get a reply or retweet from them.

    If you have no content under their favorite topics, you can use the links shared to create a much better post on your blog (taking the cue from Brian Dean).

    Related post:  How to Use Buzzsumo to Boost Your Blog Content

    2. LinkHunter

    Disclaimer: Any link that points to LinkHunter in this post is an affiliate link. If you click and make a purchase from that link, I will earn a commission from every sale. If you like even to learn more about the plugin, click on the link above or this one (also an affiliate link) for more information.

    LinkHunter is your one-stop shop when it comes to connecting with influencers—regardless of where they are in the globe.

    In a way, LinkHunter is a cheaper alternative to BuzzSumo if you cannot afford the high price range of the latter. Granted, there are features in BuzzSumo that are not available in LinkHunter (more on this later), but let us focus on what it can do instead.

    Once you have signed up for an account, log in to access your dashboard.

    From here, you must create outreach campaigns to launch using the tool. There are a few to chose from:

    • Guest post on other sites

    • Have bloggers review your products

    • Pay a blogger to write about you

    • Promote your content to blogs

    • Get links from resource pages

    • Use your own prospecting queries

    linkhunter campaigns

    Once you’ve chosen a campaign, fill out the details as you see fit. Enter up to three topics/keywords that the tool will use to search for prospects.

    linkhunter blogger outreach campaign

    While the tool is search for website owners whom to reach out to, you can craft your email template to be sent to these people.

    linkhunter email template

    You can edit the template to add dynamic fields to enter the recipient’s name, URL, and other variables.

    Regarding the prospects, you can organize them according to page authority and KWs.

    linkhunter authority kws

    Using this information, you can prioritize which sites to reach out to in your campaign.

    The tool fetches the site’s email address and the contact form. Therefore, it’s best to create templates for emails and contact forms so you can increase the chances of getting your message sent to them.

    linkhunter submit contact form

    As with most blogger outreach tools, you need to verify the prospect by combing through the list manually and see if you’ll be sending the email to the right person.

    That’s pretty much it when it comes to using LinkHunter. It’s simple, easy, and takes away the guesswork from blogger outreach as a whole.

    Learn more about LinkHunter by clicking on the links below:

    3. Streak for Gmail

    If you do not have funds to shell out for the tools above, you can go straight to looking for influencers the hard way.

    The one thing you need to consider using, however, is an email tool that lets you keep track of the emails you have sent to influencers.

    Streak, initially a CRM software specifically designed around Gmail, is a great freemium tool to use for blogger outreach.

    This tool is perfect for bloggers who don’t want to overcomplicate the outreach process with plenty of external software. All it does is optimize your Gmail inbox for contact management.

    Once you sign up for an account, access your Gmail to see the difference.

    Gmail with Streak

    The added Pipelines option on the left sidebar of Gmail tracks the progress of individual conversations, organizes your leads according to priority, highlights messages that demand your attention, and more.

    Click on Dealflow to see the contacts you have reached out to so far and which stage are they in your conversion funnel.

    DealFlow Streak

    To add people in your Streak’s conversion funnel, compose a new email, enter the e-mail address of the influencer, and click the Add to Box icon below the editor.

    add to box streak

    Once added, you can label the influence by adding notes and identifying which part of your conversion funnel they are in (assuming you have sent your email).

    dealflow with influencer streak

    If you are hellbent on sending out templates to influencers, Streak lets you create Snippets that you can send out to them to make your blogger outreach faster and more efficient.

    snippets streak

    There are no templates to choose from, so you must build your own. Also, make the email personal to each influencer – edit the message before sending it out.

    I find myself using Streak more often than other blogger outreach tools. It does one thing: manage your contacts in a single place, and it does it quite well. I suggest that you at least try out the tool and see if it eases the burden of blogger outreach for you.

    Conclusion

    Blogger outreach ultimately boils down to good relationship building. A healthy relationship, in turn, can only exist between two persons who value each other’s presence. That said, real blogger outreach begins when you stop viewing it as a marketing process and more as a way of gaining friends.

  • Grammarly Pro vs Business vs Enterprise: Which Plan Is Worth It in 2026?

    Grammarly Pro vs Business vs Enterprise: Which Plan Is Worth It in 2026?

    Grammarly now has three plans: Free, Pro, and Enterprise. Free gives you basic checks and 100 AI prompts a month. Pro is the right pick for most individual writers and small teams at $12 per member per month on the annual plan. Enterprise is for large organizations that need custom security and no cap on AI usage.

    If you landed here searching for the old Grammarly Premium vs Business comparison, you are in the right place. Grammarly overhauled their pricing structure in late 2024. Premium got rebranded to Pro. Business got absorbed into the Pro plan. I completely rewrote this guide to reflect how the plans actually look in 2026.

    How Grammarly’s Plans Have Changed

    For those of you who remember the old system, here is what happened:

    Old Plan NameNew Plan Name
    FreeFree (now with 100 AI prompts/month)
    PremiumPro
    Business (3+ users)Pro (now supports 1-149 seats)
    EnterpriseEnterprise (150+ users)

    Same basic idea, different packaging. The real change is that AI features now come standard across every tier, including the free plan.

    What Is Included in Grammarly Free?

    The free version used to be pretty bare bones. Grammar checks, spelling corrections, and not much else.

    Now? Grammarly threw in 100 AI prompts per month. That means you can actually use their generative features without paying anything.

    What you get:

    • Grammar, spelling, and punctuation fixes
    • Tone detection
    • 100 generative AI prompts monthly
    • Browser extension, desktop app, mobile keyboard
    • Basic conciseness suggestions

    Is 100 prompts enough? Depends. If you are just fixing the occasional email, sure. But I burned through my free prompts in about a week when I was testing it. Writers who rely on AI assistance daily will hit that wall fast.

    What Is Included in Grammarly Pro?

    This is where most people should start. Grammarly Pro replaced both the old Premium plan for individuals and the Business plan for teams. Whether you are a solo writer or managing a content team of up to 149 people, you are on the same Pro plan.

    Writing tools:

    • Advanced grammar corrections with explanations for why something is wrong
    • Full-sentence rewrites
    • Vocabulary suggestions
    • Tone shifting (formal to casual, confident to friendly, and more)
    • Fluency help for non-native speakers

    AI features:

    • 2,000 prompts per month
    • Compose: give it a prompt, get a draft
    • Rewrite: highlight text, get alternatives
    • Ideate: stuck on structure? It will brainstorm with you
    • Reply: auto-generates email responses
    • My Voice: the AI learns how you write over time

    Detection tools:

    • Plagiarism checker
    • AI-generated text detection

    Team and brand features:

    • Style guide (1 per account)
    • Brand tones (1 per account)
    • Snippets for reusable text blocks
    • Knowledge Share
    • Team analytics dashboard

    That 2,000 prompt limit matters. I have been using Pro for a few months now and I have never come close to hitting it. For solo writers, it is plenty.

    The style guide feature is what sells this for agencies. I have worked with clients who had ten writers producing content that sounded like it came from ten different companies. With Grammarly’s style guides, you define the rules once. Product names get capitalized correctly. Banned phrases get flagged. Everyone writes like they are part of the same team.

    It is not perfect. Sometimes the suggestions get annoying. But it beats manually reviewing every piece for brand consistency.

    What Is Included in Grammarly Enterprise?

    What Included in Each Grammarly paid plan?

    Enterprise is for large organizations. We are talking 150 or more users, serious security requirements, and IT departments that need control.

    Everything from Pro, plus:

    • Unlimited AI prompts
    • SAML single sign-on
    • Advanced user roles and access controls
    • Data loss prevention
    • BYOK (bring your own encryption key)
    • Confidential mode
    • Dedicated account manager
    • Priority support
    • Team and individual analytics
    • Cost center visibility

    Pricing is not public. You have to talk to their sales team, which usually means negotiating based on company size and which features you need.

    If you are in healthcare, finance, legal, or any industry where data security matters, the Enterprise compliance features are not optional. They are required.

    Grammarly Pricing in 2026

    Grammarly Pro pricing

    Here are the current numbers.

    Grammarly Pro

    Billing CyclePrice
    Monthly$30/month per member
    Quarterly$20/month per member (billed as $60)
    Annual$12/month per member (billed as $144)

    Pro supports 1 to 149 seats. Monthly pricing is brutal. If you know you will stick with Grammarly, go annual. On the individual plan, that saves you $216 over the year. Not nothing.

    Grammarly Enterprise

    Custom quotes only. Contact their sales team.

    AI Features Comparison

    Since everyone is asking about AI these days, here is the breakdown:

    FeatureFreeProEnterprise
    AI prompts per month1002,000Unlimited
    Compose (draft from prompt)YesYesYes
    RewriteYesYesYes
    IdeateYesYesYes
    ReplyYesYesYes
    My Voice personalizationLimitedYesYes
    Style guideNo1Unlimited
    Brand tonesNo1Unlimited
    AI detectorYesYesYes
    Plagiarism checkerNoYesYes

    Those 100 free prompts disappear faster than you would expect. Every compose, every rewrite, every “make this sound more professional” request counts against your limit. I watched mine drain in about four working days during heavy editing.

    2,000 prompts on Pro is comfortable for most people working alone. But if you have a whole team hammering the AI features, Enterprise removes the cap entirely.

    Which Grammarly Plan Should You Choose?

    Grammarly paid plans

    I cannot tell you exactly what to pick without knowing your situation. But here is how I would think about it.

    Go with Free if:

    • Writing is not a major part of your job
    • You mostly need spell check and basic grammar fixes
    • You want to test Grammarly before spending money
    • Budget is tight right now

    Go with Pro if:

    • You write professionally (blogs, client work, reports, whatever)
    • Clarity and tone matter for your work
    • You need plagiarism checking or AI detection
    • You are a student writing papers regularly
    • You manage a content team and need style guides and brand consistency

    Go with Enterprise if:

    • Your organization has 150 or more people using Grammarly
    • Security and compliance are non-negotiable
    • You need SSO, BYOK encryption, or data loss prevention
    • You want unlimited AI prompts across the whole team
    • A dedicated account manager would actually help you

    Can You Get Grammarly Pro for Free?

    Short answer: not reliably.

    Grammarly does offer a 7-day free trial for Pro right now. You get full access and they send you an email reminder two days before it ends. No payment today, but you will need to add a card to start the trial.

    What you can do beyond the trial:

    1. Use the free tier first. It is genuinely useful for basic stuff. Spend a few weeks with it and see if you actually need more.
    2. Pay for one month. Yes, $30 hurts compared to the annual rate. But it is cheaper than committing to a year and realizing you do not use it.
    3. Ask your employer or school. Lots of universities and companies have Grammarly licenses through education or enterprise agreements. I have met people who had access for years without knowing it.
    4. Wait for Black Friday. Grammarly usually does 50 to 55 percent off around late November. If you can hold out, that is the best time to grab an annual plan.

    Grammarly vs. Alternatives

    Grammarly is not your only choice. Here is a quick look at the competitive landscape:

    ToolAnnual PriceBest For
    Grammarly Pro$12/monthAll-around writing assistance with strong AI
    ProWritingAid~$10/monthWriters who want detailed style reports
    QuillBot~$8/monthParaphrasing and summarizing
    Wordtune~$10/monthSentence-level rewriting
    Microsoft EditorFree with Microsoft 365Basic corrections for Office users
    LanguageToolFree or ~$5/monthPrivacy-focused, open-source option

    I have tried most of these. ProWritingAid gives you more detailed style reports but feels clunkier to use day-to-day. QuillBot is great for paraphrasing but does not do much else. Microsoft Editor is fine if you live in Office anyway.

    Grammarly wins on integration. It works in Chrome, on the desktop app, in the phone keyboard, and inside Google Docs. That everywhere-ness is hard to beat for professional writers who jump between tools constantly.

    Note: competitor prices are approximate and subject to change. Check each tool’s pricing page before making a decision.

    Conclusion

    Grammarly looks different than it did a few years ago. Premium and Business are gone. The whole thing is now Free, Pro, and Enterprise.

    Quick recap:

    Free handles casual writing and gives you 100 AI prompts a month to test the generative features.

    Pro is the right call for most professional writers, students, and content teams. At $12 per member per month on the annual plan, you get 2,000 AI prompts, plagiarism detection, full-sentence rewrites, and team features like style guides and brand tones.

    Enterprise is for organizations with 150 or more users that need serious security controls, unlimited AI, and dedicated support.

    If writing matters to your work, the annual Pro subscription is probably worth it. I have saved enough time on editing alone to justify the cost several times over.

    Questions about which tier fits your situation? Leave a comment below. I actually read these.

    Frequently Asked Questions

    What happened to Grammarly Premium?

    Rebranded to Pro in late 2024. Same features, same pricing. They also bumped the AI prompts from 1,000 to 2,000 per month.

    What happened to Grammarly Business?

    Folded into the Pro plan. Pro now supports 1 to 149 seats, covering everything the old Business plan handled. If you had a Business subscription, Grammarly should have contacted you about the transition.

    How many AI prompts do I get with each plan?

    Free gets 100 per month. Pro gets 2,000 per month. Enterprise gets unlimited.

    Is Grammarly worth it in 2026?

    If you write daily, probably yes. The AI features genuinely speed up drafting and editing. If you write once a week, the free tier might be enough to start.

    Does Grammarly offer student discounts?

    No dedicated student pricing on the main plans. But check if your school has an institutional license through Grammarly for Education. Many do, and access would be free for you.

    Can I use Grammarly on my phone?

    Yes. They have a keyboard app for iOS and Android that works across all your mobile apps.

    How many people can use Grammarly Pro?

    Pro supports up to 149 seats. For 150 or more users, you move to Enterprise.

/* ============================================================================= WebMCP tool registration for christopherjanb.com ----------------------------------------------------------------------------- Deploy: WPCode -> + Add Snippet -> Add Your Custom Code (HTML Snippet) Insert Location: Site Wide Footer Conditional Logic: NONE (this script self-gates on the URL path) Prereq: upload webmcp.js to the site root first, so it loads at https://christopherjanb.com/webmcp.js (download from https://github.com/jasonjmcghee/WebMCP) The blue widget only appears on https://christopherjanb.com/mcp/ ============================================================================= */