Skip to content

Commit 007f179

Browse files
authored
Merge pull request #2 from fiale-plus/initial-setup
initial project setup
2 parents 834181a + 5a22a32 commit 007f179

3 files changed

Lines changed: 52 additions & 0 deletions

File tree

.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Node
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
package-lock.json
7+
*.tgz
8+
9+
# Environment
10+
.env
11+
.env.local
12+
.env.*.local
13+
14+
# Build outputs
15+
dist/
16+
build/
17+
*.js
18+
*.d.ts
19+
!*.config.js
20+
21+
# IDE
22+
.vscode/
23+
.idea/
24+
.claude/
25+
*.swp
26+
*.swo
27+
*~
28+
29+
# OS
30+
.DS_Store
31+
Thumbs.db
32+
33+
# Local documentation and specs
34+
docs/local/

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# TradingView MCP Server
2+
3+
**Unofficial** Model Context Protocol (MCP) server for TradingView API integration.
4+
5+
## Status
6+
7+
🚧 **Work in Progress** - This project is in early development.
8+
9+
## About
10+
11+
This is an unofficial MCP server implementation that aims to provide integration with TradingView's API through the Model Context Protocol.
12+
13+
## License
14+
15+
See [LICENSE](LICENSE) file for details.

docs/.gitkeep

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Documentation folder
2+
3+
`local/` - For local documentation

0 commit comments

Comments
 (0)