ai.smithery/Hint-Services-obsidian-github
searchFiles
Search for notes, documents, and files within your Obsidian vault on GitHub (hoffination/Ben-Personal). Find specific knowledge base content using GitHub's powerful search syntax. Supports searching in filenames, paths, and content.
Remote Hint-Services/obsidian-github-mcp
Other tools also called searchFiles?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"page": {
"type": "number",
"default": 0,
"description": "Page number to retrieve (0-indexed)"
},
"query": {
"type": "string",
"description": "Search query - can be a simple term or use GitHub search qualifiers"
},
"perPage": {
"type": "number",
"default": 100,
"description": "Number of results per page"
},
"searchIn": {
"enum": [
"filename",
"path",
"content",
"all"
],
"type": "string",
"default": "all",
"description": "Where to search: 'filename' (exact filename match), 'path' (anywhere in file path), 'content' (file contents), or 'all' (comprehensive search)"
}
}
}