/ Directory / Playground / indian-trading-skills
● Community ajeeshworkspace ⚡ Instant

indian-trading-skills

by ajeeshworkspace · ajeeshworkspace/indian-trading-skills

Analysis skills for Indian equity markets — NSE/BSE stock data, F&O derivatives, institutional flows, market breadth. Not a stock picker.

A skill for analyzing Indian equity and derivatives markets. Pulls / structures data on NSE/BSE stocks, F&O open interest, FII/DII flows, and breadth indicators. Aimed at investors and traders doing their own research — explicitly not a prediction or signal service.

Why use it

Key features

Live Demo

What it looks like in practice

indian-trading-skill.replay ▶ ready
0/0

Install

Pick your client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "indian-trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/ajeeshworkspace/indian-trading-skills",
        "~/.claude/skills/indian-trading-skills"
      ],
      "_inferred": true
    }
  }
}

Open Claude Desktop → Settings → Developer → Edit Config. Restart after saving.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "indian-trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/ajeeshworkspace/indian-trading-skills",
        "~/.claude/skills/indian-trading-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor uses the same mcpServers schema as Claude Desktop. Project config wins over global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "indian-trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/ajeeshworkspace/indian-trading-skills",
        "~/.claude/skills/indian-trading-skills"
      ],
      "_inferred": true
    }
  }
}

Click the MCP Servers icon in the Cline sidebar, then "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "indian-trading-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/ajeeshworkspace/indian-trading-skills",
        "~/.claude/skills/indian-trading-skills"
      ],
      "_inferred": true
    }
  }
}

Same shape as Claude Desktop. Restart Windsurf to pick up changes.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "indian-trading-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/ajeeshworkspace/indian-trading-skills",
        "~/.claude/skills/indian-trading-skills"
      ]
    }
  ]
}

Continue uses an array of server objects rather than a map.

~/.config/zed/settings.json
{
  "context_servers": {
    "indian-trading-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/ajeeshworkspace/indian-trading-skills",
          "~/.claude/skills/indian-trading-skills"
        ]
      }
    }
  }
}

Add to context_servers. Zed hot-reloads on save.

claude mcp add indian-trading-skill -- git clone https://github.com/ajeeshworkspace/indian-trading-skills ~/.claude/skills/indian-trading-skills

One-liner. Verify with claude mcp list. Remove with claude mcp remove.

Use Cases

Real-world ways to use indian-trading-skills

Check market breadth for a sector before a decision

👤 Active investors doing their own homework ⏱ ~20 min intermediate

When to use: You're considering a position and want breadth context, not just price.

Prerequisites
  • Skill installed — git clone https://github.com/ajeeshworkspace/indian-trading-skills ~/.claude/skills/indian-trading-skills
  • Data source access — Skill relies on public NSE/BSE data; some providers rate-limit
Flow
  1. Pull sector constituents
    Use indian-trading-skills. Nifty IT sector — list constituents with 1-week return and advance/decline.✓ Copied
    → Table with breadth stats
  2. Compare to broader index
    How does the sector breadth compare to Nifty 50 broader breadth?✓ Copied
    → Comparative delta

Outcome: Context for your own decision — nothing more.

Pitfalls
  • Treating this output as a signal — It isn't. This is analysis scaffolding, not a recommendation.
Combine with: filesystem

Inspect F&O open interest buildup on a single stock

👤 Derivatives traders ⏱ ~15 min advanced

When to use: You're tracking OI changes around an expected event.

Flow
  1. Pull the OI chain
    Use indian-trading-skills. RELIANCE — current F&O option chain with today's OI change per strike.✓ Copied
    → Strike-by-strike OI delta
  2. Identify concentration
    Where's the heaviest buildup? Call or put side?✓ Copied
    → Concentration analysis

Outcome: Numeric context you can combine with your own read.

Pitfalls
  • Misreading OI buildup as directional signal — OI changes are ambiguous — writers vs buyers can produce the same number

Combinations

Pair with other MCPs for X10 leverage

indian-trading-skill + filesystem

Save daily snapshots for your own longitudinal analysis

Snapshot FII/DII + Nifty breadth each trading day into data/daily/.✓ Copied

Tools

What this MCP exposes

ToolInputsWhen to callCost
stock_quote symbol (NSE/BSE) Any price lookup 1 API call
option_chain symbol, expiry F&O analysis 1 API call
sector_breadth sector index Sector context N calls
institutional_flow date Flow analysis 1 call

Cost & Limits

What this costs to run

API quota
Varies by data provider; public NSE endpoints rate-limit heavily
Tokens per call
Low
Monetary
Free if using public data; paid if using commercial feeds
Tip
Cache queries — NSE blocks aggressive callers.

Security

Permissions, secrets, blast radius

Credential storage: Any data provider creds in env vars
Data egress: NSE/BSE and any configured data providers

Troubleshooting

Common errors and fixes

NSE endpoint blocks requests

NSE aggressively rate-limits bots; add delays, rotate User-Agent, or use a commercial data feed

Option chain data stale

Free sources often lag — paid feeds for intraday work

Alternatives

indian-trading-skills vs others

AlternativeWhen to use it insteadTradeoff
Broker-provided analyticsYour broker has good tools alreadyLocked to broker
TradingViewVisual charting focusLess LLM-assisted; subscription cost

More

Resources

📖 Read the official README on GitHub

🐙 Browse open issues

🔍 Browse all 400+ MCP servers and Skills