eqvitta-mcp 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +3 -2
  2. package/server.json +29 -0
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "eqvitta-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
+ "mcpName": "io.github.Eqvitta/eqvitta-mcp",
4
5
  "description": "Official Model Context Protocol (MCP) server for Eqvitta Cloud Accounting & GST Billing. Seamlessly manage ledgers, generate GST-compliant invoices, track stock, and generate financial reports directly in Claude.",
5
6
  "type": "commonjs",
6
7
  "main": "bin/cli.js",
7
8
  "bin": {
8
- "eqvitta-mcp": "./bin/cli.js"
9
+ "eqvitta-mcp": "bin/cli.js"
9
10
  },
10
11
  "scripts": {
11
12
  "start": "node bin/cli.js"
package/server.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.Eqvitta/eqvitta-mcp",
4
+ "description": "Eqvitta MCP: GST billing, ledgers, invoices, stock and financial reports for Claude.",
5
+ "repository": {
6
+ "url": "https://github.com/Eqvitta/eqvitta-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.1",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "eqvitta-mcp",
14
+ "version": "1.0.1",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "name": "EQVITTA_API_KEY",
21
+ "description": "Your Eqvitta API key (generated in Eqvitta Settings > API Keys)",
22
+ "isRequired": true,
23
+ "format": "string",
24
+ "isSecret": true
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ }