
Blacklotusdev8 Test M MCP
- Updated September 26, 2025
- blacklotusdev8/test_m
ai.smithery/blacklotusdev8-test_m is a MCP server that greets by name and scrapes webpages for quick agent reference.
About
ai.smithery/blacklotusdev8-test_m is a small Smithery MCP server that combines a name-based greeting tool with webpage scraping so you can validate MCP plumbing and grab page text for quick notes. developers typically add it when experimenting with Claude Code or Cursor remotes, or when they need a minimal fetch step during research—not as a production crawler. The greeting path confirms tool invocation works end to end; the scrape path helps paste competitor landing copy or docs snippets into the thread without manual selection. Treat it as a demo-oriented integration with limited surface area compared to full browser automation stacks. It is inappropriate for compliance, rate-limited production harvests, or authenticated sites. If you only need reliable research ingestion at scale, graduate to a dedicated browser or search MCP after this passes your connectivity check.
- Personalized hello greeting tool for MCP smoke tests
- Scrape webpages to extract content for agent context
- Required Smithery Bearer token on streamable-http remote
- Useful to verify MCP client config before heavier servers
- Package version 1.14.0; schema 2025-09-29
Blacklotusdev8 Test M MCP by the numbers
- Data as of Aug 10, 2026 (Skillselion catalog sync)
claude mcp add --transport http blacklotusdev8-test_m https://server.smithery.ai/@blacklotusdev8/test_m/mcp --header "Authorization: Bearer YOUR_TOKEN"Add your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| Transport | HTTP |
|---|---|
| Auth | Required |
| Last updated | September 26, 2025 |
| Repository | blacklotusdev8/test_m ↗ |
What it does
Smoke-test Smithery MCP wiring and pull webpage text into the agent for quick reference during early research spikes.
Who is it for?
Best when you're testing Smithery MCP setup and want a tiny scrape plus hello tool before committing to larger servers.
Skip if: Production SEO pipelines, authenticated portals, or teams needing robust parsing, caching, and legal review.
What you get
Once connected, you can prove tool calls succeed and pull basic page content into the same agent session.
- Confirmed MCP tool round-trip via greet action
- Extracted webpage text loaded into agent context
- Baseline pattern for adding larger Smithery servers
By the numbers
- Package version: 1.14.0
- Auth: Bearer smithery_api_key marked required on remote
- Repository: github.com/blacklotusdev8/test_m
README.md
test
An MCP server built with Smithery.
Prerequisites
- Smithery API key: Get yours at smithery.ai/account/api-keys
Getting Started
Run the server:
uv run devTest interactively:
uv run playground
Try saying "Say hello to John" to test the example tool.
Run with Docker
Build the image (from the project root):
docker build -t hello-server .
Run the container:
docker run --rm -p 8081:8081 --shm-size=1g hello-server
Notes:
- The server listens on
0.0.0.0:8081and serves the MCP endpoint at/mcp. --shm-size=1gimproves browser stability for Playwright/Firefox-based scraping.
You can now connect an MCP client to:
http://localhost:8081/mcp
Development
Your server code is in src/hello_server/server.py. Add or update your server capabilities there.
Deploy
Ready to deploy? Push your code to GitHub and deploy to Smithery:
Create a new repository at github.com/new
Initialize git and push to GitHub:
git add . git commit -m "Hello world 👋" git remote add origin https://github.com/YOUR_USERNAME/YOUR_REPO.git git push -u origin mainDeploy your server to Smithery at smithery.ai/new
Recommended MCP Servers
How it compares
Minimal test/scrape MCP, not a full Playwright-style automation suite or research methodology skill.
FAQ
Who is ai.smithery/blacklotusdev8-test_m for?
It is for developers validating Smithery MCP integration and doing informal webpage grabs during early research.
When should I use ai.smithery/blacklotusdev8-test_m?
Use it when wiring a new MCP client or when you need a quick, non-production page extract for reference notes.
How do I add ai.smithery/blacklotusdev8-test_m to my agent?
Configure the Smithery streamable-http URL and set the required Authorization Bearer header with your smithery_api_key.