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-utils",
"version": "6.0.0",
"description": "Shared utilities for Octocode MCP packages",
"keywords": [
"mcp",
"model-context-protocol",
"json",
"llm",
"utilities"
],
"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-utils"
},
"bugs": "https://github.com/bgauryy/octocode-mcp/issues",
"license": "PolyForm-Small-Business-1.0.0",
"dependencies": {
"clean-css": "^5.3.0",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"terser": "^5.19.0"
},
"devDependencies": {
"@microsoft/tiktokenizer": "^1.0.10",
"@types/clean-css": "^4.2.11",
"@types/html-minifier-terser": "^7.0.2",
"@types/js-yaml": "^4.0.9",
"eslint": "^8.57.0",
"prettier": "^3.5.3",
"rollup": "^4.46.2",
"rollup-plugin-dts": "^6.0.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^4.0.13"
},
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./jsonToLLMString": {
"types": "./dist/jsonToLLMString.d.ts",
"import": "./dist/jsonToLLMString.mjs",
"require": "./dist/jsonToLLMString.js"
},
"./minifier": {
"types": "./dist/minifier.d.ts",
"import": "./dist/minifier.mjs",
"require": "./dist/minifier.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "yarn lint && rollup -c",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:watch": "rollup -c --watch",
"clean": "rm -rf dist",
"example": "tsx examples/example.ts",
"examples": "tsx examples/example.ts",
"format": "prettier --write src/**/*.ts",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint src/**/*.ts tests/**/*.ts --fix",
"test": "vitest run",
"test:coverage": "vitest --coverage",
"test:quiet": "vitest run --reporter=dot --silent",
"test:watch": "vitest --watch"
},
"type": "module",
"types": "dist/index.d.ts"
}