Type something to search...
Is Claude MCP the beginning of a true Agentic Era? Part 2

Is Claude MCP the beginning of a true Agentic Era? Part 2

In a previous blog post, I talked about MCP and how it can make Claude not just a chatbot, but a really powerful assistant that can interact with your local applications such as file systems, Google Drive, your email program and much more.

Let’s put theory into action and test the Rapid Summarizer, a tool that generates summaries from any given URL.

For this demonstration, the summarizer is running locally at localhost:3009. We’ll use the Puppeteer MCP to navigate to the API testing interface, input a URL, trigger the summarization, and then save the result using the file system MCP.

This simple example showcases the potential for broader UI testing applications.

— -

Step by Step for Running on Mac (Similar on Windows)

  1. Download Claude for Desktop https://claude.ai/download and log in.
  2. Go to File -> Settings -> Edit config (this is basically the MCP config, the location where you save all the MCP servers you want to use).

A list of MCP servers to start with can be found here: https://github.com/modelcontextprotocol/servers

Copy and paste this to add the Puppeteer MCP:

{
  "mcpServers": {
    "puppeteer": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-puppeteer"]
    },
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/tmp/,dst=/projects/Desktop",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

Note: You’d adjust the mount configuration for a real-world application. For now, we’re using /tmp/, meaning anything written to /projects/Desktop within the MCP server’s Docker sandbox will appear in your system’s /tmp/ directory.

  1. Restart Claude.

Now, clicking the icon in the lower-right corner of your chat window will display the list of currently loaded tools.

Here is my prompt:

Open localhost:3009
and let the service summarize this blog post
and make a screenshot
https://medium.com/@airabbitX/protecting-your-email-online-all-you-need-to-know-a693cd11ea79

And let the magic begin…

It successfully opened the application at the specified URL (after a minor correction of adding /docs to the address).

It located and clicked the “Try it” button.

It then entered the URL and clicked Execute. However, the UI didn’t seem to register the input. Anyway, let’s move on.

Now we got a summary of the initial URL www.example.com.

Initially, it didn’t detect that the summarization was complete. However, after prompting it to scroll, Claude recognized the summary and successfully saved it to a file as expected.

I confirmed this by checking the Docker container running the MCP server. Alternatively, you could verify it in the designated mount folder.

— -

Evaluation

This initial test was quite impressive:

  • No additional software installation was required.
  • Unlike Computer Use, there was no need to manually start Docker containers or Streamlit.
  • MCP configuration and connections worked seamlessly out of the box, and Claude’s interactions with them are transparent (you can follow the entire conversation with each MCP server in the chat window).
  • It operates significantly faster than Computer Use, thanks to its API-based approach instead of relying on point-and-click interactions

Related Posts

10 Creative Ways to Use ChatGPT Search The Web Feature

10 Creative Ways to Use ChatGPT Search The Web Feature

For example, prompts and outputs Did you know you can use the “search the web” feature of ChatGPT for many tasks other than your basic web search? For those who don't know, ChatGPT’s new

Read More
📚 10 Must-Learn Skills to Stay Ahead in AI and Tech 🚀

📚 10 Must-Learn Skills to Stay Ahead in AI and Tech 🚀

In an industry as dynamic as AI and tech, staying ahead means constantly upgrading your skills. Whether you’re aiming to dive deep into AI model performance, master data analysis, or transform trad

Read More
10 Powerful Perplexity AI Prompts to Automate Your Marketing Tasks

10 Powerful Perplexity AI Prompts to Automate Your Marketing Tasks

In today’s fast-paced digital world, marketers are always looking for smarter ways to streamline their efforts. Imagine having a personal assistant who can create audience profiles, suggest mar

Read More
10+ Top ChatGPT Prompts for UI/UX Designers

10+ Top ChatGPT Prompts for UI/UX Designers

AI technologies, such as machine learning, natural language processing, and data analytics, are redefining traditional design methodologies. From automating repetitive tasks to enabling personal

Read More
100 AI Tools to Finish Months of Work in Minutes

100 AI Tools to Finish Months of Work in Minutes

The rapid advancements in artificial intelligence (AI) have transformed how businesses operate, allowing people to complete tasks that once took weeks or months in mere minutes. From content creat

Read More
17 Mindblowing GitHub Repositories You Never Knew Existed

17 Mindblowing GitHub Repositories You Never Knew Existed

Github Hidden Gems!! Repositories To Bookmark Right Away Learning to code is relatively easy, but mastering the art of writing better code is much tougher. GitHub serves as a treasur

Read More