69
/ 100
19 days ago
glama

Lens

Integrated web search MCP server with multi-engine parallel execution, automatic fallback, BM25 relevance filtering, and content extraction. Supports DuckDuckGo and Naver (news, web, encyclopedia) searches.

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find.

Install from

M8ven verifies MCPs across every public registry — install directly from whichever one you prefer.

// key findings
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
🔐
You'll be asked for 1 credential: NAVER_CLIENT_SECRET
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// required environment variables
This server reads these from process.env. You'll be asked to provide them before it can run.
configNAVER_CLIENT_IDS/ NAVER_CLIENT_SECRETS 네이버 Client ID/Secret 배열 (콤마 구분, 순서로 짝지어짐) (없음)
configNAVER_CLIENT_SECRETSNAVER_CLIENT_IDS / 네이버 Client ID/Secret 배열 (콤마 구분, 순서로 짝지어짐) (없음)
configNAVER_CLIENT_ID
🔐 secretNAVER_CLIENT_SECRET
configLOG_FILELOG_LEVEL / 로그 레벨 / 파일 경로 INFO / search.log
configLOG_LEVEL/ LOG_FILE 로그 레벨 / 파일 경로 INFO / search.log
configEXCLUDE_OVERFETCH_COUNT필터링 활성 시 미리 넉넉히 가져올 개수 10
configRELEVANCE_FILTERBM25 관련성 필터 (, 기본 켜짐): 전체 엔진 결과를 합쳐서 각 결과의 제목+설명(엔진이 이미 돌려준 텍스트, 추가 요청 없음)을 bm25_search와 동일한 BM25 모델로 검색어와 비교하고, 이번 배치 최고점 대비 RELEVANCE_MIN_SCORE_RATIO(기본 0.15) 미만인 결과는 본문 보강 이전에 제외합니다.
configRELEVANCE_MIN_SCORE_RATIOBM25 관련성 필터 (RELEVANCE_FILTER, 기본 켜짐): 전체 엔진 결과를 합쳐서 각 결과의 제목+설명(엔진이 이미 돌려준 텍스트, 추가 요청 없음)을 bm25_search와 동일한 BM25 모델로 검색어와 비교하고, 이번 배치 최고점 대비 (기본 0.15) 미만인 결과는 본문 보강 이전에 제외합니다.
configSEARCH_ENGINE_TIMEOUT_SECONDS동시 실행 + 시간 초과: 요청된 엔진들은 스레드풀로 한 번에 실행되고(순차 실행 대비 훨씬 빠름), 안에 응답 없는 엔진은 건너뜁니다.
configNAVER_DAILY_LIMIT/ NAVER_LIMIT_THRESHOLD 키 1개당 1일 호출 한도 / 이 비율 도달 시 다음 키로 순환 25000 / 0.8
configNAVER_LIMIT_THRESHOLDNAVER_DAILY_LIMIT / 키 1개당 1일 호출 한도 / 이 비율 도달 시 다음 키로 순환 25000 / 0.8
configNAVER_SEARCH_ENDPOINT/ _2 / _3 네이버 검색 종류 (뉴스/웹문서/백과사전), 같은 키로 3개까지 등록 가능 news / webkr / encyc
configNAVER_SEARCH_ENDPOINT_2
configNAVER_SEARCH_ENDPOINT_3
configFETCH_CONTENT/ FETCH_CONTENT_TOP_N / FETCH_CONTENT_MAX_CHARS / FETCH_CONTENT_MIN_USEFUL_CHARS 본문 보강 켜기/끄기, 보강할 개수/최대 글자수/최소 유효 글자수 true / 3 / 3000 / 200
configFETCH_CONTENT_TOP_NFETCH_CONTENT / / FETCH_CONTENT_MAX_CHARS / FETCH_CONTENT_MIN_USEFUL_CHARS 본문 보강 켜기/끄기, 보강할 개수/최대 글자수/최소 유효 글자수 true / 3 / 3000 / 200
configFETCH_CONTENT_MAX_CHARSFETCH_CONTENT / FETCH_CONTENT_TOP_N / / FETCH_CONTENT_MIN_USEFUL_CHARS 본문 보강 켜기/끄기, 보강할 개수/최대 글자수/최소 유효 글자수 true / 3 / 3000 / 200
configFETCH_CONTENT_MIN_USEFUL_CHARSFETCH_CONTENT / FETCH_CONTENT_TOP_N / FETCH_CONTENT_MAX_CHARS / 본문 보강 켜기/끄기, 보강할 개수/최대 글자수/최소 유효 글자수 true / 3 / 3000 / 200
configSEARCH_ENGINE_MODEengines: "duckduckgo", "naver"(뉴스), "naver_web"(일반 웹문서), "naver_encyc"(백과사전/용어사전) 중 콤마로 구분해 지정하거나, 기본값 "all"(=.env의 DEFAULT_ENGINES 또는 프리셋)을 사용합니다.
configDEFAULT_ENGINESengines: "duckduckgo", "naver"(뉴스), "naver_web"(일반 웹문서), "naver_encyc"(백과사전/용어사전) 중 콤마로 구분해 지정하거나, 기본값 "all"(=.env의 또는 SEARCH_ENGINE_MODE 프리셋)을 사용합니다.
configHIT_COUNT_LOG_FILE/ HIT_COUNT_INTERVAL_SECONDS 별도 호출 현황 로그 파일 / 기록 주기(초) hit_count.log / 60
configHIT_COUNT_INTERVAL_SECONDSHIT_COUNT_LOG_FILE / 별도 호출 현황 로그 파일 / 기록 주기(초) hit_count.log / 60
configMCP_TRANSPORT1. 직접 실행 (수동 테스트/확인용) — =stdio(기본값)일 때는 클라이언트 연결을 기다리며 대기하고, 자체 출력은 없습니다(stdout은 MCP 프로토콜 전용이라 로그도 search.log/stderr로만 나감).
configMCP_HOST3. 네트워크(sse/streamable-http)로 띄워 여러 클라이언트가 공유 — .env에서 MCP_TRANSPORT=sse(또는 streamable-http)로 바꾸고 위와 동일하게 실행하면 :MCP_PORT(기본 127.0.0.1:8000)에서 대기합니다. 이 경우 클라이언트는 명령이 아니라 URL로 등록합니다.
configMCP_PORT3. 네트워크(sse/streamable-http)로 띄워 여러 클라이언트가 공유 — .env에서 MCP_TRANSPORT=sse(또는 streamable-http)로 바꾸고 위와 동일하게 실행하면 MCP_HOST:(기본 127.0.0.1:8000)에서 대기합니다. 이 경우 클라이언트는 명령이 아니라 URL로 등록합니다.
// full audit trail
The full breakdown of what we checked, the deductions that landed, the network hosts, the dependency advisories, and concrete fix guidance is available to verified publishers.
// improvement guidance — verified publishers only
We have 5 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Score](https://m8ven.ai/badge/mcp/choidonghee-ktds-lens-rfpkjx)](https://m8ven.ai/mcp/choidonghee-ktds-lens-rfpkjx)
commit: 7a7d9af30b0c1c6d6f10053a2934e622b3b6a0ce
code hash: 0781ae275ec0b7dd5cdb2480152cf1ce98759f94ac120b01b16a20c269c579e3
verified: 7/12/2026, 8:36:52 AM
view raw JSON →