finta-aurora-mcp 1.0.1__py3-none-any.whl → 1.0.2__py3-none-any.whl

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.
@@ -1,3 +1,3 @@
1
1
  """Finta Aurora MCP - Chat with Aurora AI from Cursor/Claude Desktop."""
2
2
 
3
- __version__ = "1.0.1"
3
+ __version__ = "1.0.2"
finta_aurora_mcp/auth.py CHANGED
@@ -84,55 +84,125 @@ def main():
84
84
  <html>
85
85
  <head>
86
86
  <meta charset="UTF-8">
87
- <title>Authentication Successful</title>
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, Oxygen, Ubuntu, Cantarell, sans-serif;
91
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
92
- color: white;
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.1);
104
- border-radius: 20px;
105
- backdrop-filter: blur(10px);
106
- box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
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: 2.5em;
110
- margin-bottom: 20px;
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: 1.2em;
114
- margin: 10px 0;
169
+ font-size: 16px;
170
+ margin: 12px 0;
171
+ color: #4a5568;
172
+ line-height: 1.6;
115
173
  }
116
- .checkmark {
117
- font-size: 4em;
118
- margin-bottom: 20px;
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">✓</div>
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
- <p><strong>Next step:</strong> Restart Cursor to use Aurora MCP.</p>
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'))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: finta-aurora-mcp
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Aurora AI Agent for Finta
5
5
  Home-page: https://github.com/finta/aurora
6
6
  Author: Finta
@@ -1,5 +1,5 @@
1
- finta_aurora_mcp/__init__.py,sha256=FRVJKmoVsgY67MdCj1ORhvuLlbyL9NJImGnutwnMgOk,96
2
- finta_aurora_mcp/auth.py,sha256=Yoac3GMmRs2168PpqpKiLFoDFwHLQmZIvlv63tm9l_k,9730
1
+ finta_aurora_mcp/__init__.py,sha256=V-DjpBF-YGrCvOxMlibJWY38OctrGy9ls3JvzkCSGKU,96
2
+ finta_aurora_mcp/auth.py,sha256=DRI-grU7H9UvnUEoV-Q6lYvkd--Qlr100tTNiYuEo7Q,11743
3
3
  finta_aurora_mcp/fix_org_info.py,sha256=UrGRBsjz99nAnrTAC6VPfPkAIiHb7LS69fRZoDdVMT4,1590
4
4
  finta_aurora_mcp/mcp.py,sha256=L-a1OT8QxnF3Ymu5dJaj49dHz1csGR20i9UGeWTC_tY,20930
5
5
  tools/__init__.py,sha256=oTvelMfzMN2Dc9-NYxX2z9JtLhayfqbhI0ooC2IxECY,868
@@ -13,7 +13,7 @@ tools/pineconeKnowledgeTool.py,sha256=4IRhTUkClRGcDNgYQcMyiCmP-TyIDdgYAiUvOkdyQr
13
13
  tools/pineconeResourceTool.py,sha256=1IuJ9xnIly2vN8ehWZMqxbYmLXxLeCZISeSQxiHxFLo,1054
14
14
  tools/serpAPITool.py,sha256=Mi6Yq-zTBdbvSiwqGeCiT_Jx2bpEbI8k9xXrCLtIzX8,544
15
15
  tools/webScraperTool.py,sha256=OKwCo1bkVXJpcldbI-dvSm0qjQmhr4wmJUrj_KFMBb4,1122
16
- finta_aurora_mcp-1.0.1.dist-info/METADATA,sha256=XUAKw2D0JxuQnKVMnkwNXmtWte893oHeHhAvdZ6y_wQ,6787
17
- finta_aurora_mcp-1.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
18
- finta_aurora_mcp-1.0.1.dist-info/top_level.txt,sha256=IHyK49UWbgesCaXyeEpE-cHkjwWoDOTv7RhPaCWKgwQ,23
19
- finta_aurora_mcp-1.0.1.dist-info/RECORD,,
16
+ finta_aurora_mcp-1.0.2.dist-info/METADATA,sha256=aWuF9LhoXJSF6tNVeHRGcKE7GseSwxAa0B04VYVNq2A,6787
17
+ finta_aurora_mcp-1.0.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
18
+ finta_aurora_mcp-1.0.2.dist-info/top_level.txt,sha256=IHyK49UWbgesCaXyeEpE-cHkjwWoDOTv7RhPaCWKgwQ,23
19
+ finta_aurora_mcp-1.0.2.dist-info/RECORD,,