Catalog
Sensegrep
Officialby Stahldavid · TypeScript
Semantic + structural code search MCP server for AI-native development.
Semantic and structural code search for AI-assisted development workflows.
Topics
ai-agentscode-searchdeveloper-toolsmcpsemantic-searchtree-sittertypescript
README not available yet.
Install
Configuration
Environment variables
SENSEGREP_ROOTRoot directory to index and search. Defaults to current working directory.
SENSEGREP_PROVIDEREmbeddings provider: gemini, openai, or bedrock.
GEMINI_API_KEYsecretRequired only when SENSEGREP_PROVIDER=gemini.
claude_desktop_config.json
{
"mcpServers": {
"sensegrep": {
"command": "npx",
"args": [
"-y",
"@sensegrep/mcp@1.5.3"
],
"env": {
"SENSEGREP_ROOT": "<YOUR_SENSEGREP_ROOT>",
"SENSEGREP_PROVIDER": "<YOUR_SENSEGREP_PROVIDER>",
"GEMINI_API_KEY": "<YOUR_GEMINI_API_KEY>"
}
}
}
}