Add Not Human Search MCP agent example#207
Open
unitedideas wants to merge 1 commit into
Open
Conversation
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (5 files)
The new Not Human Search MCP Agent is a standalone CLI tool that discovers agent-ready websites and verifies MCP endpoints. Code follows best practices with proper async/await patterns, safe dictionary access, and error handling. Uses httpx for HTTP communication with MCP JSON-RPC protocol. No security, runtime, or logic issues found. Reviewed by glm-4.7-flash-20260119 · 112,847 tokens |
shivaylamba
requested changes
Apr 30, 2026
shivaylamba
left a comment
Collaborator
There was a problem hiding this comment.
you need to use Nebius ai model with the demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #206
🔗 Linked Issue
Closes #206
✅ Type of Change
📝 Summary
Adds a runnable MCP agent example under
mcp_ai_agents/nothumansearch_mcp_agent. It connects to the public Not Human Search MCP endpoint, lists tools, searches for agent-ready sites, and optionally verifies an MCP endpoint with a live JSON-RPC handshake.Verification run:
python3.11 mcp_ai_agents/nothumansearch_mcp_agent/main.py --query "payment api" --limit 2 --verify-url https://nothumansearch.ai/mcpThe run connected to the live MCP endpoint, returned the NHS tool list, showed two payment API results, and verified
https://nothumansearch.ai/mcpas MCP-compliant.📖 README Checklist
README.mdfile for my project.README.mdfollows the official.github/README_TEMPLATE.md.README.md.assetsfolder and included it in myREADME.md.✔️ Contributor Checklist
requirements.txtandpyproject.tomlfor dependencies..env.examplefile if environment variables are needed and ensured no secrets are committed. No environment variables are required for this example.