-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
67 lines (67 loc) · 1.85 KB
/
Copy pathserver.json
File metadata and controls
67 lines (67 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ameernoufil/angel-one",
"title": "Angel One",
"description": "Angel One SmartAPI MCP for orders, portfolio, market data, GTT rules, charges, and margin.",
"repository": {
"url": "https://github.com/ameernoufil/angel-one-mcp",
"source": "github"
},
"version": "1.0.10",
"packages": [
{
"registryType": "npm",
"identifier": "angel-one-mcp",
"version": "1.0.10",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "ANGEL_API_KEY",
"description": "Angel One SmartAPI app key",
"isRequired": true,
"isSecret": true
},
{
"name": "ANGEL_CLIENT_ID",
"description": "Angel One client code",
"isRequired": true,
"isSecret": true
},
{
"name": "ANGEL_PASSWORD",
"description": "Angel One password or MPIN",
"isRequired": true,
"isSecret": true
},
{
"name": "ANGEL_TOTP_SECRET",
"description": "Base32 TOTP secret used to generate login OTPs",
"isRequired": true,
"isSecret": true
},
{
"name": "SOFT_MAX_ORDER_QTY",
"description": "Soft max order quantity",
"default": "25"
},
{
"name": "HARD_MAX_ORDER_QTY",
"description": "Hard max order quantity",
"default": "100"
},
{
"name": "SOFT_MAX_ORDER_VALUE",
"description": "Soft max order value in INR",
"default": "10000"
},
{
"name": "HARD_MAX_ORDER_VALUE",
"description": "Hard max order value in INR",
"default": "100000"
}
]
}
]
}