We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/himly0302/web-analysis-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "SearXNG Web Search Tests",
"version": "1.0.0",
"description": "Test SearXNG + Creeper + LLM search functionality",
"tests": [
{
"name": "Basic Search",
"description": "Basic search query",
"tool": "web_search",
"arguments": {
"query": "TypeScript best practices 2024",
"max_results": 5
}
},
{
"name": "Search with Language",
"description": "Search with Chinese language preference",
"tool": "web_search",
"arguments": {
"query": "人工智能 最新进展",
"max_results": 3,
"language": "zh"
}
},
{
"name": "Search with Time Range",
"description": "Search limited to recent time",
"tool": "web_search",
"arguments": {
"query": "Node.js v20 features",
"max_results": 4,
"time_range": "month"
}
},
{
"name": "Domain Whitelist",
"description": "Search only specific domains",
"tool": "web_search",
"arguments": {
"query": "Docker containerization guide",
"max_results": 3,
"include_domains": ["docker.com", "docs.docker.com"]
}
},
{
"name": "Domain Blacklist",
"description": "Exclude certain domains from results",
"tool": "web_search",
"arguments": {
"query": "React hooks tutorial",
"max_results": 5,
"exclude_domains": ["medium.com", "youtube.com"]
}
},
{
"name": "Large Result Set",
"description": "Search with more results to test filtering",
"tool": "web_search",
"arguments": {
"query": "machine learning algorithms comparison",
"max_results": 15
}
},
{
"name": "Technical Documentation Search",
"description": "Search for specific technical documentation",
"tool": "web_search",
"arguments": {
"query": "Python asyncio tutorial examples",
"max_results": 4,
"time_range": "year"
}
},
{
"name": "Error Handling - Empty Query",
"description": "Test handling of empty search query",
"tool": "web_search",
"arguments": {
"query": "",
"max_results": 3
}
}
]
}