finta-aurora-mcp 1.0.1__tar.gz → 1.0.2__tar.gz
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.
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/PKG-INFO +1 -1
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp/__init__.py +1 -1
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp/auth.py +95 -25
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/PKG-INFO +1 -1
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/pyproject.toml +1 -1
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/setup.py +1 -1
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/MANIFEST.in +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/README.md +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp/fix_org_info.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp/mcp.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/SOURCES.txt +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/dependency_links.txt +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/requires.txt +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/top_level.txt +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/setup.cfg +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/__init__.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/addInvestorToTrackerTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/contactSupportTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/editInvestorTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/getInvestorTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/imageTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/pdfScraperTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/pineconeKnowledgeTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/pineconeResourceTool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/serpAPITool.py +0 -0
- {finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/tools/webScraperTool.py +0 -0
|
@@ -84,55 +84,125 @@ def main():
|
|
|
84
84
|
<html>
|
|
85
85
|
<head>
|
|
86
86
|
<meta charset="UTF-8">
|
|
87
|
-
<
|
|
87
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
88
|
+
<title>Authentication Successful - Finta</title>
|
|
88
89
|
<style>
|
|
90
|
+
* {
|
|
91
|
+
margin: 0;
|
|
92
|
+
padding: 0;
|
|
93
|
+
box-sizing: border-box;
|
|
94
|
+
}
|
|
89
95
|
body {
|
|
90
|
-
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
|
|
91
|
-
background: linear-gradient(135deg, #
|
|
92
|
-
color:
|
|
96
|
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
97
|
+
background: linear-gradient(135deg, #09c39e 0%, #02748d 50%, #15445b 100%);
|
|
98
|
+
color: #ffffff;
|
|
93
99
|
margin: 0;
|
|
94
100
|
padding: 0;
|
|
95
101
|
display: flex;
|
|
96
102
|
justify-content: center;
|
|
97
103
|
align-items: center;
|
|
98
104
|
min-height: 100vh;
|
|
105
|
+
overflow: hidden;
|
|
99
106
|
}
|
|
100
107
|
.container {
|
|
101
108
|
text-align: center;
|
|
102
|
-
padding: 40px;
|
|
103
|
-
background: rgba(255, 255, 255, 0.
|
|
104
|
-
border-radius:
|
|
105
|
-
|
|
106
|
-
|
|
109
|
+
padding: 60px 40px;
|
|
110
|
+
background: rgba(255, 255, 255, 0.95);
|
|
111
|
+
border-radius: 24px;
|
|
112
|
+
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
|
|
113
|
+
max-width: 500px;
|
|
114
|
+
width: 90%;
|
|
115
|
+
color: #15445b;
|
|
116
|
+
position: relative;
|
|
117
|
+
overflow: hidden;
|
|
118
|
+
}
|
|
119
|
+
.container::before {
|
|
120
|
+
content: '';
|
|
121
|
+
position: absolute;
|
|
122
|
+
top: 0;
|
|
123
|
+
left: 0;
|
|
124
|
+
right: 0;
|
|
125
|
+
height: 4px;
|
|
126
|
+
background: linear-gradient(90deg, #09c39e 0%, #13FFAA 50%, #09c39e 100%);
|
|
127
|
+
}
|
|
128
|
+
.checkmark-circle {
|
|
129
|
+
width: 80px;
|
|
130
|
+
height: 80px;
|
|
131
|
+
border-radius: 50%;
|
|
132
|
+
background: linear-gradient(135deg, #09c39e 0%, #13FFAA 100%);
|
|
133
|
+
display: flex;
|
|
134
|
+
align-items: center;
|
|
135
|
+
justify-content: center;
|
|
136
|
+
margin: 0 auto 30px;
|
|
137
|
+
box-shadow: 0 8px 24px rgba(9, 195, 158, 0.4);
|
|
138
|
+
animation: scaleIn 0.5s ease-out;
|
|
139
|
+
}
|
|
140
|
+
@keyframes scaleIn {
|
|
141
|
+
from {
|
|
142
|
+
transform: scale(0);
|
|
143
|
+
opacity: 0;
|
|
144
|
+
}
|
|
145
|
+
to {
|
|
146
|
+
transform: scale(1);
|
|
147
|
+
opacity: 1;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
.checkmark {
|
|
151
|
+
font-size: 48px;
|
|
152
|
+
color: #ffffff;
|
|
153
|
+
font-weight: bold;
|
|
107
154
|
}
|
|
108
155
|
h1 {
|
|
109
|
-
font-size:
|
|
110
|
-
margin-bottom:
|
|
156
|
+
font-size: 28px;
|
|
157
|
+
margin-bottom: 16px;
|
|
158
|
+
color: #15445b;
|
|
159
|
+
font-weight: 700;
|
|
160
|
+
}
|
|
161
|
+
.brand-name {
|
|
162
|
+
font-size: 18px;
|
|
163
|
+
color: #09c39e;
|
|
164
|
+
font-weight: 600;
|
|
165
|
+
margin-bottom: 24px;
|
|
166
|
+
letter-spacing: 0.5px;
|
|
111
167
|
}
|
|
112
168
|
p {
|
|
113
|
-
font-size:
|
|
114
|
-
margin:
|
|
169
|
+
font-size: 16px;
|
|
170
|
+
margin: 12px 0;
|
|
171
|
+
color: #4a5568;
|
|
172
|
+
line-height: 1.6;
|
|
115
173
|
}
|
|
116
|
-
.
|
|
117
|
-
|
|
118
|
-
|
|
174
|
+
.next-step {
|
|
175
|
+
margin-top: 24px;
|
|
176
|
+
padding: 16px 24px;
|
|
177
|
+
background: #f7fafc;
|
|
178
|
+
border-radius: 12px;
|
|
179
|
+
border-left: 4px solid #09c39e;
|
|
180
|
+
}
|
|
181
|
+
.next-step strong {
|
|
182
|
+
color: #15445b;
|
|
183
|
+
font-weight: 600;
|
|
184
|
+
}
|
|
185
|
+
.next-step-text {
|
|
186
|
+
color: #4a5568;
|
|
187
|
+
font-size: 15px;
|
|
188
|
+
margin-top: 8px;
|
|
119
189
|
}
|
|
120
190
|
</style>
|
|
121
191
|
</head>
|
|
122
192
|
<body>
|
|
123
193
|
<div class="container">
|
|
124
|
-
<div class="checkmark"
|
|
194
|
+
<div class="checkmark-circle">
|
|
195
|
+
<div class="checkmark">✓</div>
|
|
196
|
+
</div>
|
|
197
|
+
<div class="brand-name">Finta</div>
|
|
125
198
|
<h1>Authentication Successful!</h1>
|
|
126
|
-
<p>Your token has been saved.</p>
|
|
199
|
+
<p>Your token has been saved securely.</p>
|
|
127
200
|
<p>You can close this window now.</p>
|
|
128
|
-
<
|
|
201
|
+
<div class="next-step">
|
|
202
|
+
<strong>Next step:</strong>
|
|
203
|
+
<div class="next-step-text">Restart Cursor to start using Aurora MCP</div>
|
|
204
|
+
</div>
|
|
129
205
|
</div>
|
|
130
|
-
<script>
|
|
131
|
-
// Keep the page open for a few seconds so user can see the message
|
|
132
|
-
setTimeout(function() {
|
|
133
|
-
// Page will stay open, user can close manually
|
|
134
|
-
}, 5000);
|
|
135
|
-
</script>
|
|
136
206
|
</body>
|
|
137
207
|
</html>"""
|
|
138
208
|
self.wfile.write(html.encode('utf-8'))
|
|
@@ -10,7 +10,7 @@ if readme_file.exists():
|
|
|
10
10
|
|
|
11
11
|
setup(
|
|
12
12
|
name="finta-aurora-mcp",
|
|
13
|
-
version="1.0.
|
|
13
|
+
version="1.0.2",
|
|
14
14
|
description="Aurora MCP client for Cursor/Claude Desktop - Chat with Finta's AI assistant",
|
|
15
15
|
long_description=long_description,
|
|
16
16
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{finta_aurora_mcp-1.0.1 → finta_aurora_mcp-1.0.2}/finta_aurora_mcp.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|