package.json•3.37 kB
{
"name": "@aredes.me/mcp-dadosbr",
"version": "0.3.6",
"description": "Model Context Protocol server for Brazilian public data lookup (CNPJ companies and CEP postal codes) with intelligent web search and sequential thinking",
"type": "module",
"module": "lib/index.ts",
"main": "build/lib/adapters/cli.js",
"bin": {
"mcp-dadosbr": "build/lib/bin/mcp-dadosbr.js"
},
"files": [
"build/",
"README.md",
"LICENSE",
".mcprc.example.json"
],
"scripts": {
"dev": "tsx lib/adapters/cli.ts",
"build": "tsc",
"build:worker": "tsc -p tsconfig.worker.json",
"start": "node build/lib/adapters/cli.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "npm run build && node test/integration/basic-flow.test.js",
"prepublishOnly": "npm run build",
"postinstall": "echo 'MCP DadosBR installed! Run with: npx @aredes.me/mcp-dadosbr or mcp-dadosbr'",
"mcp:start": "MCP_TRANSPORT=http MCP_HTTP_PORT=3000 mcp-dadosbr",
"mcp:cnpj": "node scripts/mcp-client.js cnpj",
"mcp:cep": "node scripts/mcp-client.js cep",
"mcp:test": "npm run mcp:cnpj 11222333000181 && npm run mcp:cep 01310100",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"cf:logs": "wrangler tail",
"cf:kv:create": "wrangler kv:namespace create MCP_CACHE",
"cf:kv:create:preview": "wrangler kv:namespace create MCP_CACHE --preview",
"test:sse": "node examples/sse-client.js",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"release:dry-run": "standard-version --dry-run"
},
"keywords": [
"mcp",
"model-context-protocol",
"brazil",
"brazilian-data",
"cnpj",
"cep",
"dados-publicos",
"opencnpj",
"opencep",
"company-lookup",
"postal-code",
"address-validation",
"api-integration",
"typescript",
"nodejs",
"claude-desktop",
"continue-dev",
"stdio-transport",
"http-transport",
"configurable-apis",
"self-hosting"
],
"author": "Cristiano Aredes <cristiano@aredes.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cristianoaredes/mcp-dadosbr.git"
},
"bugs": {
"url": "https://github.com/cristianoaredes/mcp-dadosbr/issues"
},
"homepage": "https://github.com/cristianoaredes/mcp-dadosbr#readme",
"dependencies": {
"@genkit-ai/mcp": "^1.22.0",
"@modelcontextprotocol/sdk": "^1.21.1",
"@smithery/sdk": "^1.7.4",
"agents": "^0.2.21",
"async-mutex": "^0.5.0",
"chalk": "^5.6.2",
"express": "^5.0.1",
"tavily": "^1.0.2",
"workers-mcp": "^0.0.13",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250927.0",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"@vitest/ui": "^4.0.8",
"c8": "^9.0.0",
"msw": "^2.0.0",
"standard-version": "^9.5.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vite": "^7.2.2",
"vitest": "^4.0.8",
"wrangler": "^4.40.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}