We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bgauryy/octocode-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "octocode-mcp-local",
"version": "1.0.1",
"description": "MCP server for local file system research using Linux commands",
"keywords": [
"mcp",
"model-context-protocol",
"local-explorer",
"file-system",
"grep",
"find",
"ls",
"cli",
"ai-assistant",
"codebase-explorer"
],
"author": "Guy Bary <bgauryy@octocodeai.com>",
"homepage": "https://octocode.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/bgauryy/octocode-mcp.git",
"directory": "packages/octocode-local"
},
"bugs": "https://github.com/bgauryy/octocode-mcp/issues",
"license": "PolyForm-Small-Business-1.0.0",
"bin": {
"octocode-local": "dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"octocode-utils": "^6.0.0",
"zod": "^3.25.26"
},
"devDependencies": {
"@anthropic-ai/claude-code": "^2.0.25",
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"eslint": "^8.57.0",
"javascript-obfuscator": "^4.1.1",
"prettier": "^3.5.3",
"rollup": "^4.46.2",
"rollup-plugin-obfuscator": "^1.1.0",
"vitest": "^4.0.13"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/index.js",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"scripts": {
"build": "yarn lint && yarn clean && rollup -c",
"build:dev": "yarn clean && rollup -c",
"build:watch": "rollup -c --watch",
"clean": "rm -rf dist/",
"debug": "npx @modelcontextprotocol/inspector node dist/index.js",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"prepublishOnly": "yarn test && yarn build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:quiet": "vitest run --reporter=dot --silent",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch"
},
"type": "module"
}