@specstory/tnydev-mcp
Version:
MCP server for tny.dev URL shortening service - AI agent integration for link management
75 lines (74 loc) • 2 kB
JSON
{
"name": "@specstory/tnydev-mcp",
"version": "1.0.4",
"description": "MCP server for tny.dev URL shortening service - AI agent integration for link management",
"main": "dist/index.js",
"type": "module",
"bin": {
"tnydev-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build",
"extension:validate": "node scripts/prepare-extension.js",
"extension:build": "npm run build && node scripts/build-extension.js",
"extension:pack": "cd extension && npx @anthropic-ai/dxt pack",
"extension:test": "npx @anthropic-ai/dxt test extension/manifest.json"
},
"keywords": [
"mcp",
"model-context-protocol",
"url-shortener",
"tny.dev",
"ai-agents",
"claude",
"cursor",
"link-management",
"api"
],
"author": "SpecStory AI <support@tny.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/specstoryai/tnydev-mcp.git"
},
"homepage": "https://github.com/specstoryai/tnydev-mcp#readme",
"bugs": {
"url": "https://github.com/specstoryai/tnydev-mcp/issues"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7",
"zod": "^3.24.1"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"archiver": "^7.0.1",
"@types/archiver": "^6.0.3"
}
}