@frontlinesystems/rason-mcp-server 2026.5.0
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.
- package/LICENSE +35 -0
- package/README.md +282 -0
- package/examples/EXAMPLES_REFERENCE.md +128 -0
- package/examples/Optimization/Conic/AirlineHubConic.json +112 -0
- package/examples/Optimization/Conic/AirlineHubConic2.json +109 -0
- package/examples/Optimization/Conic/AirlineHubConic3.json +112 -0
- package/examples/Optimization/Conic/AirlineHubConic4.json +100 -0
- package/examples/Optimization/Conic/AirlineHubConic5.json +102 -0
- package/examples/Optimization/DataBinding/ProductMixCsv.json +82 -0
- package/examples/Optimization/DataBinding/ProductMixCsv4.json +96 -0
- package/examples/Optimization/DataBinding/ProductMixExcel.json +74 -0
- package/examples/Optimization/DataBinding/ProductMixExcel1.json +87 -0
- package/examples/Optimization/DataBinding/ProductMixExcel11.json +109 -0
- package/examples/Optimization/DataBinding/ProductMixExcel2.json +78 -0
- package/examples/Optimization/DataBinding/ProductMixTab.json +90 -0
- package/examples/Optimization/DataBinding/ProductMixTab1.json +74 -0
- package/examples/Optimization/DataBinding/ProductMixTab2.json +78 -0
- package/examples/Optimization/Linear/Inventory.json +200 -0
- package/examples/Optimization/Linear/Matop.json +120 -0
- package/examples/Optimization/Linear/ProductMix.json +98 -0
- package/examples/Optimization/Linear/ProductMix2.json +73 -0
- package/examples/Optimization/Linear/ProductMix3.json +50 -0
- package/examples/Optimization/Linear/ProductMix4.json +57 -0
- package/examples/Optimization/Linear/ProductMixCsv1.json +106 -0
- package/examples/Optimization/Linear/ProductMixCsv2.json +106 -0
- package/examples/Optimization/Linear/ProductMixSQL11.json +82 -0
- package/examples/Optimization/Linear/Rowop.json +127 -0
- package/examples/Optimization/NonLinear/AirlineHub.json +64 -0
- package/examples/Optimization/NonLinear/AirlineHub2.json +48 -0
- package/examples/Optimization/NonLinear/AirlineHub3.json +48 -0
- package/examples/Optimization/NonSmooth/Inventory2.json +160 -0
- package/examples/Optimization/Quadratic/PortfolioOpt.json +56 -0
- package/examples/Optimization/Quadratic/PortfolioOpt2.json +66 -0
- package/examples/Optimization/WithUncertainty/GasCompanyChance.json +79 -0
- package/examples/Optimization/WithUncertainty/GasCompanyRecourse.json +79 -0
- package/examples/Optimization/WithUncertainty/ProjectSelect.json +78 -0
- package/examples/Optimization/WithUncertainty/ProjectSelect2.json +82 -0
- package/examples/Optimization/WithUncertainty/ProjectSelect3.json +85 -0
- package/examples/Optimization/WithUncertainty/ProjectSelect4.json +75 -0
- package/examples/Simulation/CandyStoreSalesUsingSIP.json +148 -0
- package/examples/Simulation/CollegeFundGrowth1.json +424 -0
- package/examples/Simulation/CollegeFundGrowth1SIPModel.json +28 -0
- package/examples/Simulation/CollegeFundGrowth2.json +416 -0
- package/examples/Simulation/CollegeFundGrowthSIP.json +402 -0
- package/examples/Simulation/GBMSimulationModel.json +237 -0
- package/examples/Simulation/YieldManagement(Sim).json +70 -0
- package/examples/Simulation/YieldManagement2(Sim).json +73 -0
- package/examples/calculation/DMNExamples/DMN Box Fun with typeDef result.json +54 -0
- package/examples/calculation/DMNExamples/DMN Context example.json +69 -0
- package/examples/calculation/DMNExamples/DMN DT with typeDef result.json +43 -0
- package/examples/calculation/DMNExamples/FEEL Date Time example.json +28 -0
- package/examples/calculation/DMNExamples/FEEL For iteration example.json +66 -0
- package/examples/calculation/DMNExamples/FEEL For with two indices.json +16 -0
- package/examples/calculation/DMNExamples/FEEL For with typeDef result.json +88 -0
- package/examples/calculation/DMNExamples/FEEL If Then Else example.json +26 -0
- package/examples/calculation/DMNExamples/FEEL List example.json +38 -0
- package/examples/calculation/DMNExamples/FEEL List operator.json +17 -0
- package/examples/calculation/DMNExamples/FEEL List with typeDef collection.json +37 -0
- package/examples/calculation/DMNExamples/FEEL Some or Every example.json +66 -0
- package/examples/calculation/DecisionTables/DT Datasource example.json +53 -0
- package/examples/calculation/DecisionTables/DT Date and Time examples.json +92 -0
- package/examples/calculation/DecisionTables/DT Expression example.json +32 -0
- package/examples/calculation/DecisionTables/DT Hit Policy examples.json +137 -0
- package/examples/calculation/DecisionTables/DT Loan Recommend model.json +82 -0
- package/examples/calculation/DecisionTables/DT Loan Strategy Model and Predictive CSV-XML.json +219 -0
- package/examples/calculation/DecisionTables/DT Loan Strategy model and Datasource.json +286 -0
- package/examples/calculation/DecisionTables/DT Loan Strategy model and Predictive.json +204 -0
- package/examples/calculation/DecisionTables/DT Loan Strategy model by scratch.json +214 -0
- package/examples/calculation/DecisionTables/DT Output Order example.json +40 -0
- package/examples/calculation/DecisionTables/DT Unique example.json +39 -0
- package/examples/calculation/TypeDefinitions/TypeDefCF.json +65 -0
- package/examples/calculation/TypeDefinitions/TypeDefDT.json +58 -0
- package/examples/datamining/AffinityAnalysis/AssociationRules.json +52 -0
- package/examples/datamining/Classification/DecisionTree.json +91 -0
- package/examples/datamining/Classification/DiscriminantAnalysis.json +82 -0
- package/examples/datamining/Classification/Ensembles/Bagging.json +67 -0
- package/examples/datamining/Classification/Ensembles/Boosting.json +68 -0
- package/examples/datamining/Classification/Ensembles/RandomTrees.json +92 -0
- package/examples/datamining/Classification/FindBestModel.json +87 -0
- package/examples/datamining/Classification/LogisticRegression.json +83 -0
- package/examples/datamining/Classification/NaiveBayes.json +79 -0
- package/examples/datamining/Classification/NearestNeighbors.json +85 -0
- package/examples/datamining/Classification/NeuralNetwork.json +93 -0
- package/examples/datamining/Clustering/Hierarchical.json +55 -0
- package/examples/datamining/Clustering/KMeans.json +72 -0
- package/examples/datamining/DataSources/DelimitedFile.json +50 -0
- package/examples/datamining/DataSources/JSONFile.json +50 -0
- package/examples/datamining/DataSources/MSAccessDatabase.json +50 -0
- package/examples/datamining/DataSources/MSExcelTable.json +51 -0
- package/examples/datamining/DataSources/MSSQLDatabase.json +50 -0
- package/examples/datamining/DataSources/ODATATable.json +50 -0
- package/examples/datamining/DataSources/ODBCDatabase.json +50 -0
- package/examples/datamining/FeatureSelection/LinearWrapping.json +54 -0
- package/examples/datamining/FeatureSelection/LogisticWrapping.json +57 -0
- package/examples/datamining/FeatureSelection/Univariate.json +79 -0
- package/examples/datamining/Regression/DecisionTree.json +82 -0
- package/examples/datamining/Regression/Ensembles/Bagging.json +63 -0
- package/examples/datamining/Regression/Ensembles/Boosting.json +63 -0
- package/examples/datamining/Regression/Ensembles/RandomTrees.json +79 -0
- package/examples/datamining/Regression/FindBestModel.json +87 -0
- package/examples/datamining/Regression/LinearRegression.json +125 -0
- package/examples/datamining/Regression/NearestNeighbors.json +78 -0
- package/examples/datamining/Regression/NeuralNetwork.json +83 -0
- package/examples/datamining/Scoring/JSONClassifier.json +63 -0
- package/examples/datamining/Scoring/JSONClassifierNN.json +63 -0
- package/examples/datamining/Scoring/JSONClusterizer.json +38 -0
- package/examples/datamining/Scoring/JSONForecaster.json +50 -0
- package/examples/datamining/Scoring/JSONLinearRegression.json +57 -0
- package/examples/datamining/Scoring/JSONPCA.json +42 -0
- package/examples/datamining/Scoring/JSONRegressor.json +57 -0
- package/examples/datamining/Scoring/JSONTransformer.json +39 -0
- package/examples/datamining/Scoring/PMMLClassifier.json +43 -0
- package/examples/datamining/Scoring/PMMLForecaster.json +44 -0
- package/examples/datamining/Scoring/PMMLRegressor.json +39 -0
- package/examples/datamining/Scoring/PMMLTransformer.json +39 -0
- package/examples/datamining/Simulation/LinearRegressionSimulation.json +118 -0
- package/examples/datamining/Simulation/SyntheticDataGeneration.json +109 -0
- package/examples/datamining/Simulation/pmml-risk-scoring.json +63 -0
- package/examples/datamining/Summarizer/Summarization.json +55 -0
- package/examples/datamining/TextMining/LatentSemanticAnalysis.json +52 -0
- package/examples/datamining/TextMining/TfIdf-FileData.json +66 -0
- package/examples/datamining/TextMining/TfIdf-InlineData.json +56 -0
- package/examples/datamining/TimeSeries/AddHoltWinters.json +80 -0
- package/examples/datamining/TimeSeries/Arima.json +75 -0
- package/examples/datamining/TimeSeries/DoubleExponential.json +66 -0
- package/examples/datamining/TimeSeries/Exponential.json +65 -0
- package/examples/datamining/TimeSeries/LagAnalysis.json +49 -0
- package/examples/datamining/TimeSeries/MovingAverage.json +66 -0
- package/examples/datamining/TimeSeries/MulHoltWinters.json +66 -0
- package/examples/datamining/TimeSeries/NoTrendHoltWinters.json +66 -0
- package/examples/datamining/Transformation/Binning.json +70 -0
- package/examples/datamining/Transformation/CanonicalVariateAnalysis.json +48 -0
- package/examples/datamining/Transformation/CategoryReduction.json +52 -0
- package/examples/datamining/Transformation/Factorization.json +51 -0
- package/examples/datamining/Transformation/MissingDataHandling.json +84 -0
- package/examples/datamining/Transformation/OneHotEncoding-DataInline.json +55 -0
- package/examples/datamining/Transformation/OneHotEncoding-DatainFile.json +49 -0
- package/examples/datamining/Transformation/PartitionTimeSeries.json +49 -0
- package/examples/datamining/Transformation/Partitioning-DF.json +73 -0
- package/examples/datamining/Transformation/Partitioning.json +47 -0
- package/examples/datamining/Transformation/PartitioningWithOversampling-DF.json +66 -0
- package/examples/datamining/Transformation/PartitioningWithOversampling.json +45 -0
- package/examples/datamining/Transformation/PrincipalComponentsAnalysis.json +53 -0
- package/examples/datamining/Transformation/Rescaling.json +68 -0
- package/examples/datamining/Transformation/Sampling.json +44 -0
- package/examples/datamining/Transformation/StratifiedSampling.json +47 -0
- package/examples/flow/SQLServerTransform.json +261 -0
- package/examples/flow/dm-calc-pipeline.json +278 -0
- package/examples/flow/dm-pipeline-simulation.json +114 -0
- package/examples/flow/opt-sim-pipeline.json +160 -0
- package/examples/flow/sim-dm-pipeline.json +107 -0
- package/examples/flow/sim-sim-pipeline.json +137 -0
- package/examples/index.json +4679 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/DataFiltering/ListwithFilter.json +53 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/ProductMix5.json +58 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/compoundWhileStatement.json +36 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/ifThenElseStatement.json +34 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/Loops/nestedLoop.json +26 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/ParallelArray.json +48 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/indexedArray.json +70 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/nonParallelArray.json +50 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/sumAggregateExample.json +338 -0
- package/examples/rason-features/Arrays_Loops_Tables/ArrayExamples/tsp.json +62 -0
- package/examples/rason-features/BoxIterators/Box_Fun_Loop_Iter_Sim_RASON.json +191 -0
- package/examples/rason-features/BoxIterators/Box_Fun_Loop_Sim_RASON.json +76 -0
- package/examples/rason-features/BoxIterators/Box_Fun_Sim_RASON.json +109 -0
- package/examples/rason-features/BoxIterators/Box_Iter_SIM_RASON.json +69 -0
- package/examples/rason-features/BoxIterators/Box_Iterator_Calc_Loop.json +183 -0
- package/examples/rason-features/BoxIterators/Box_Iterator_with_typeDef_partial.json +79 -0
- package/examples/rason-features/BoxLambdaExamples/BoxFunOptimize.json +155 -0
- package/examples/rason-features/BoxLambdaExamples/BoxFunSimulate.json +119 -0
- package/examples/rason-features/BoxLambdaExamples/LambdaFunOptimize.json +143 -0
- package/examples/rason-features/BoxLambdaExamples/LambdaFunSimulate.json +82 -0
- package/examples/rason-features/ReferenceGuide/RGFirehouseLocation.json +69 -0
- package/examples/rason-features/ReferenceGuide/RGFirehouseLocationConic.json +114 -0
- package/examples/rason-features/ReferenceGuide/RGProductMixCsv1.json +108 -0
- package/examples/rason-features/ReferenceGuide/RGProductMixExcel11.json +117 -0
- package/examples/rason-features/ReferenceGuide/RGProductMixSQL11.json +108 -0
- package/examples/rason-features/UserGuide/UGAirlineHubCSV.json +67 -0
- package/examples/rason-features/UserGuide/UGForecast.json +51 -0
- package/examples/rason-features/UserGuide/UGProductMix1.json +49 -0
- package/examples/rason-features/UserGuide/UGProductMix2.json +49 -0
- package/examples/rason-features/UserGuide/UGProductMixTab1.json +68 -0
- package/examples/rason-features/UserGuide/UGProductMixTab2.json +77 -0
- package/examples/rason-features/UserGuide/UGProductMixTab3.json +67 -0
- package/examples/rason-features/UserGuide/UGProductMixTab4.json +71 -0
- package/examples/rason-features/UserGuide/UGProductMixTab5.json +68 -0
- package/examples/rason-features/UserGuide/UGProjectSelect0.json +92 -0
- package/examples/rason-features/UserGuide/UGProjectSelect1.json +75 -0
- package/examples/rason-features/UserGuide/UGProjectSelect2.json +75 -0
- package/examples/rason-features/UserGuide/UGYieldManagement1.json +62 -0
- package/examples/rason-features/UserGuide/UGYieldManagement2.json +62 -0
- package/examples/rason-features/UserGuide/UGYieldManagement3.json +64 -0
- package/out/index.cjs +361 -0
- package/package.json +76 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
This SOFTWARE LICENSE (the "License") constitutes a legally binding agreement between Frontline Systems, Inc. ("Frontline" or "Licensor") and the individual or organization ("Licensee") acquiring the right to use certain computer program products offered by Frontline (the "Software"), in exchange for Licensee’s payment to Frontline (the "Fees"). This License governs the Software as installed for ‘desktop’ Use on a personal computer; and as installed on servers operated by Frontline for ‘cloud’ Use, where portions of the Software may be executed on the server or downloaded to a personal computer through a web browser or other application (including but not limited to desktop Excel). Unless replaced by a separate written agreement signed by an officer of Frontline, this License shall govern Licensee's use of the Software. BY DOWNLOADING, ACCEPTING DELIVERY OF, INSTALLING, INSERTING, OR USING THE SOFTWARE, LICENSEE AGREES TO BE BOUND BY ALL TERMS AND CONDITIONS OF THIS LICENSE.
|
|
2
|
+
1. LICENSE GRANT AND TERMS.
|
|
3
|
+
Grant of License: Subject to all the terms and conditions of this License, Frontline grants to Licensee a non-exclusive, non-transferable except as provided below, personal right and license to Use the Software (as the term "Use" is defined below) for the term as provided in Section 5, with the following restrictions:
|
|
4
|
+
Identity, Email and Password: Frontline’s licenses enable one individual person to use the Software on more than one computer by identifying himself/herself with an email and password, or through another authentication system (including but not limited to Microsoft 365). In consideration of this, Licensee agrees to provide and maintain a valid email address and password that is unique to and used only by the person who will Use the Software, whose personal first and last name is provided to Frontline. During the term of this license, Licensee agrees that the email address will be associated with an email account where the individual Using the Software regularly receives email, and that neither Licensee nor such individual will ‘share’ or provide the email address and password to any other person. Licensee agrees that Frontline’s willingness to grant this License is predicated on Licensee’s fulfillment of this obligation, and that evidence of Use of the Software by any other individual (for a Multi-User License, any other individual not identified to Frontline) shall constitute prima facie evidence of copyright infringement. If Licensee is an organization, it may, on a quarterly basis, or more frequently if Frontline agrees in its sole discretion, change the named individual(s) who will Use the Software, in accordance with the terms of this License.
|
|
5
|
+
Internet Access: Licensee understands that ‘cloud’ Use of the Software, whether through a web browser or another application (such as desktop Excel), requires a continuous, reasonably high speed connection through the public Internet to servers operated by Frontline, or alternatively through Licensee’s own network to server software separately licensed from Frontline. In the course of “cloud’ Use, Licensee’s model(s) and/or data, and device/system information about the Personal Computer where the Software is being Used, may be transmitted over the Internet or Licensee’s own network to Frontline’s server software, using commercial-grade secure protocols.
|
|
6
|
+
Licensee further understands that, to support Use by one person on multiple Personal Computers, Frontline’s license management software must, from time to time, access Frontline’s servers via the public Internet, even when the Software is installed solely for ‘desktop’ Use on such Personal Computers. The length of time that the Software will be permitted to run without Internet-based access to Frontline’s servers is a property of the license. Licensee agrees to arrange for periodic Internet access on the Personal Computers where Licensee wishes to Use the Software.
|
|
7
|
+
Personal Computers: Each of the License types below permits Use by one named individual on one or more physical personal computers and/or virtual computers, subject to limits established by Frontline from time to time, in its sole discretion, based on its estimate of how many different computers (for example, two to four) may reasonably be used by one individual. For a Multiple-User License as defined below, the limits established by Frontline will reflect the number of named individuals whom Licensee intends to share Use of the license. Licensee understands that Frontline’s license management software may prevent Use of the Software on physical or virtual computers that exceed such limits.
|
|
8
|
+
Server Resource Usage Limits: For ‘cloud’ Use of the Software which involves consumption of computing resources on Frontline’s servers, each license type imposes limits on the amounts of processor (CPU) time, memory and external storage that may be used within a given time interval, as a property of the license. Licensee understands that Frontline’s license management software may prevent further Use of a license, during a given time interval, if the limits are reached. These limits do not apply to Use of Licensee’s own computing resources at Licensee’s own expense.
|
|
9
|
+
Evaluation License and Test Runs: If and when offered by Frontline for a limited Term determined by Frontline in its sole discretion, Licensee may Use the Software on one or more Personal Computers, but only one Personal Computer at any given time, for the purpose of evaluating suitability of the Software prior to Licensee’s purchase of another license type. Such Use may permit only models and/or datasets of limited size, or may permit Use only to the extent needed to determine whether a model can be solved, without providing full solution information ("Test Runs"). No such Use shall imply any warranty of any kind, including suitability or fitness for a particular purpose; all warranties shall be as provided in Sections 2 through 4 of this agreement.
|
|
10
|
+
Single-User License: Upon Frontline’s receipt of payment from Licensee of the applicable Fee (not merely an order) for a "Single-User License", Licensee may install and Use the Software, for a limited Term specified as part of the license, on one or more Personal Computers, but may Use the Software only on one Personal Computer at any given time. Irrespective of purchase order or invoice terms, Licensee has no right to Use the Software without prior payment.
|
|
11
|
+
Multiple-User License: If Licensee is an organization, it may purchase a license for Use by multiple named individuals, who may be employees, contractors or otherwise affiliated with the organization, and who are bound by written agreements to comply with Licensee’s obligations, including those in this License. Upon Frontline’s receipt of payment from Licensee of the applicable Fee (not merely an order) for a "Multiple-User License", and receipt of a list of named individuals, each with email address, password, and personal first and last names: Licensee and/or the named individuals may install and Use the Software, for a limited Term specified as part of the license, on one or more Personal Computers, but each Multiple-User license may be Used by only one named individual on one Personal Computer at any given time. As above, irrespective of purchase order or invoice terms, Licensee has no right to Use the Software without prior payment.
|
|
12
|
+
"Use" of the Software means the use of any of its functions to define, analyze, solve (using optimization, simulation, data mining or other analytic methods) and/or obtain results for a single user-defined model at a time. Use with more than one model concurrently, whether on one or several Personal Computers, requires more than one Single-User or Multiple-User License. Use occurs only during the time that the computer’s processor is executing the Software; it does not include time when the Software is loaded into memory without being executed. The minimum time period for Use on any one Personal Computer shall be ten (10) minutes, but may be longer depending on the Software function used and the size and complexity of the model.
|
|
13
|
+
Other License Restrictions: The Software includes license management features that may store and communicate encoded information about the license type and term on the Personal Computer(s) and/or on Frontline’s servers; Licensee agrees that it will not attempt to alter or circumvent such license control features. This License does not grant to Licensee the right to make copies of the Software or otherwise enable use of the Software in any manner other than as described above, by any persons or on any computers except as described above, or by any entity other than Licensee. Licensee acknowledges that the Software and its structure, organization, and source code constitute valuable Intellectual Property of Frontline and/or its suppliers and Licensee agrees that it shall not, nor shall it permit, assist or encourage any third party to: (a) copy, modify adapt, alter, translate or create derivative works from the Software; (b) merge the Software into any other software or use the Software to develop any application or program having the same primary function as the Software; (c) sublicense, distribute, sell, use for service bureau use, lease, rent, loan, or otherwise transfer the Software; (d) "share" use of the Software with anyone else; (e) make the Software available over the Internet, a company or institutional intranet, or any similar networking technology, except as provided by Frontline; (f) reverse compile, reverse engineer, decompile, disassemble, or otherwise attempt to derive the source code for the Software; or (g) otherwise exercise any rights in or to the Software, except as permitted in this Section.
|
|
14
|
+
U.S. Government: The Software is provided with RESTRICTED RIGHTS. Use, duplication, or disclosure by the U.S. Government is subject to restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013 or subparagraphs (c)(1) and (2) of the Commercial Computer Software - Restricted Rights at 48 CFR 52.227-19, as applicable. Contractor/manufacturer is Frontline Systems, Inc., P.O. Box 4288, Incline Village, NV 89450.
|
|
15
|
+
2. ANNUAL SUPPORT.
|
|
16
|
+
Limited warranty: If Licensee has a current license subscription with Annual Support from Frontline, then Frontline warrants, during the license subscription term, that the Software covered by the subscription will perform substantially as described in the User Guide published by Frontline in connection with the Software, as such may be amended from time to time, when it is properly used as described in the User Guide, provided, however, that Frontline does not warrant that the Software will be error-free in all circumstances. During the license subscription term, Frontline will make reasonable commercial efforts to correct, or devise workarounds for, any Software errors (failures to perform as so described) reported by Licensee, and to timely provide such corrections or workarounds to Licensee. In the event of "force majeure" events such as natural disaster, war, terrorism, or civil disorder, including interruption or denial of Internet and/or communication services, Frontline's efforts may be subject to reasonable delays.
|
|
17
|
+
If Licensee has a current license subscription with Annual Support for ‘cloud’ Use of the Software from Frontline, then Frontline also warrants, during the license subscription term, that the Software will use commercial-grade secure methods for transmission and temporary storage of Licensee’s information (including models and data), and that Frontline’s server software will delete any temporary copies of such information immediately after the conclusion of each Use. Frontline may, but is not required to maintain a log of Uses of its client and server Software.
|
|
18
|
+
Disclaimer of Other Warranties: IF THE SOFTWARE IS COVERED BY A CURRENT LICENSE SUBSCRIPTION, THE LIMITED WARRANTY IN THIS SECTION 2 SHALL CONSTITUTE FRONTLINE'S AND ITS SUPPLIERS’ ENTIRE LIABILITY IN CONTRACT, TORT AND OTHERWISE, AND LICENSEE’S EXCLUSIVE REMEDY UNDER THIS LIMITED WARRANTY. IF THE SOFTWARE IS NOT COVERED BY A CURRENT LICENSE SUBSCRIPTION, FOR EXAMPLE IF LICENSEE PERMITS THE SOFTWARE LICENSE SUBSCRIPTION TO EXPIRE, THE LIMITED WARRANTY IN THIS SECTION 2 SHALL NOT APPLY.
|
|
19
|
+
3. WARRANTY DISCLAIMER.
|
|
20
|
+
EXCEPT AS PROVIDED IN SECTION 2 ABOVE, THE SOFTWARE IS PROVIDED "AS IS" AND "WHERE IS" WITHOUT WARRANTY OF ANY KIND; FRONTLINE AND, WITHOUT EXCEPTION, ITS SUPPLIERS (COLLECTIVELY, "LICENSORS") DISCLAIM ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, WITH RESPECT TO THE SOFTWARE OR ANY WARRANTIES ARISING FROM COURSE OF DEALING OR COURSE OF PERFORMANCE AND THE SAME ARE HEREBY EXPRESSLY DISCLAIMED TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW. WITHOUT LIMITING THE FOREGOING, LICENSORS DO NOT REPRESENT, WARRANTY OR GUARANTEE THAT THE SOFTWARE WILL BE ERROR-FREE, UNINTERRUPTED, SECURE, OR MEET LICENSEES’ EXPECTATIONS. LICENSORS DO NOT MAKE ANY WARRANTY REGARDING THE SOFTWARE'S RESULTS OF USE OR THAT THEY WILL CORRECT ALL ERRORS. THE LIMITED WARRANTY SET FORTH IN SECTION 2 IS EXCLUSIVE AND LICENSORS MAKE NO OTHER EXPRESS OR IMPLIED WARRANTIES OR CONDITIONS WITH RESPECT TO THE SOFTWARE, ANNUAL SUPPORT, AND/OR OTHER SERVICES PROVIDED IN CONNECTION WITH THIS LICENSE, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NONINFRINGEMENT.
|
|
21
|
+
4. LIMITATION OF LIABILITY.
|
|
22
|
+
IN NO EVENT SHALL LICENSORS HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION ANY LOST DATA, LOST PROFITS OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES), HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THE SOFTWARE OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR INCIDENTAL OR CONSEQUENTIAL DAMAGES, THE ABOVE LIMITATION MAY NOT APPLY. NOTWITHSTANDING ANYTHING HEREIN TO THE CONTRARY, IN NO EVENT SHALL LICENSORS’ TOTAL CUMULATIVE LIABILITY IN CONNECTION WITH THIS LICENSE, THE SOFTWARE, AND ANY SUPPORT PROVIDED TO LICENSEE HEREUNDER, WHETHER IN CONTRACT OR TORT OR OTHERWISE EXCEED THE PRICE OF ONE SINGLE-USER LICENSE. FRONTLINE'S SUPPLIERS ARE INTENDED BENEFICIARIES OF THESE LIMITATIONS AND DISCLAIMERS, AND THIS LIMITATION OF LIABILITY FOR FRONTLINE AND ITS SUPPLIERS IS NOT CUMULATIVE. LICENSEE ACKNOWLEDGES THAT THIS ARRANGEMENT REFLECTS THE ALLOCATION OF RISK SET FORTH IN THIS LICENSE AND THAT LICENSORS WOULD NOT ENTER INTO THIS LICENSE WITHOUT THESE LIMITATIONS ON ITS LIABILITY. LICENSEE ACKNOWLEDGES THAT THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.
|
|
23
|
+
LICENSEE UNDERSTANDS AND AGREES THAT ANY RESULTS OBTAINED THROUGH LICENSEE'S USE OF THE SOFTWARE ARE ENTIRELY DEPENDENT ON LICENSEE’S DESIGN AND IMPLEMENTATION OF ITS OWN OPTIMIZATION, SIMULATION OR DATA MINING MODEL, FOR WHICH LICENSEE IS ENTIRELY RESPONSIBLE, EVEN IF LICENSEE RECEIVED ADVICE, REVIEW, OR ASSISTANCE ON MODELING FROM FRONTLINE.
|
|
24
|
+
5. TERM AND TERMINATION, DISPUTES.
|
|
25
|
+
Term: The License shall become effective when Licensee first downloads, accepts delivery, installs, inserts or uses the Software, and shall continue for a limited term specified as part of the License, unless earlier terminated for breach pursuant to this Section. As provided above, Licensee's right to use the Software under this License is expressly conditioned on Frontline's receipt of payment of Fees for the License.
|
|
26
|
+
Renewal: On the last day of the License term, unless Licensee notifies Frontline in writing to the contrary at least 30 days prior to such date, the License will renew for another term of the same duration, at Frontline's then-current Fees for such a License, and such amount will be invoiced and become due and payable by Licensee. As provided above, Licensee's continued right to use the Software is expressly conditioned on Frontline's receipt of payment of such Fees.
|
|
27
|
+
Termination: Frontline may terminate this License if Licensee breaches any material provision of this License and does not cure such breach (provided that such breach is capable of cure) within 30 days after Frontline provides Licensee with written notice thereof.
|
|
28
|
+
Disputes: The parties desire to resolve disputes arising out of this Agreement without litigation. Accordingly, except for an action for copyright infringement related to Licensee's unauthorized use of the Software, the parties agree to meet and negotiate in good faith to resolve any dispute arising under this Agreement, with any correspondence treated as confidential information developed for purposes of settlement and exempt from discovery and production. If the negotiations do not resolve the dispute within 60 days, the dispute shall be submitted to binding arbitration by a single arbitrator pursuant to the Commercial Arbitration Rules of the American Arbitration Association. Discovery shall be controlled by the arbitrator. The arbitrator shall rule on the dispute by issuing a written opinion within 30 days after the close of hearings. Judgment upon the award rendered by the arbitrator may be entered in any court having jurisdiction. Each party shall bear its own costs of these procedures.
|
|
29
|
+
6. GENERAL PROVISIONS.
|
|
30
|
+
Proprietary Rights: The Software is licensed, not sold; title to the Software remains with Frontline and its suppliers. The Software and all existing and future worldwide copyrights, trademarks, service marks, trade secrets, patents, patent applications, moral rights, contract rights, and other proprietary and intellectual property rights therein ("Intellectual Property"), are the exclusive property of Frontline and/or its suppliers. All rights in and to the Software and Frontline’s other Intellectual Property not expressly granted to Licensee in this License are reserved by Frontline. For the Large-Scale LP/QP Solver only: Source code is available, as part of an open source project, for portions of the Software developed by others; please contact Frontline for information if you want to obtain this source code.
|
|
31
|
+
Amendments: This License constitutes the complete and exclusive agreement between the parties relating to the subject matter hereof. It supersedes all other proposals, understandings and all other agreements, oral and written, between the parties relating to this subject matter, including any purchase order of Licensee, any of its preprinted terms, or any terms and conditions attached to such purchase order.
|
|
32
|
+
Compliance with Laws: Licensee agrees it will not export or re-export the Software without all required United States and foreign government licenses.
|
|
33
|
+
Assignment: This License may be assigned to any entity that succeeds by operation of law to Licensor or Licensee, or that purchases all or substantially all of Licensor's or Licensee’s assets (the "Successor"), provided that the other party is notified of the transfer, and that Successor agrees to all terms and conditions of this License.
|
|
34
|
+
Governing Law: Any controversy, claim or dispute arising out of or relating to this License, shall be governed by the laws of the State of Nevada, other than such laws, rules, regulations and case law that would result in the application of the laws of a jurisdiction other than the State of Nevada.
|
|
35
|
+
|
package/README.md
ADDED
|
@@ -0,0 +1,282 @@
|
|
|
1
|
+
<!-- This file is generated. Edit docs/readme/ sources instead. -->
|
|
2
|
+
|
|
3
|
+
# <img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/mcp-128-128-height-reduced.png" alt="Frontline Systems" height="64"> RASON MCP Server
|
|
4
|
+
|
|
5
|
+
[](https://marketplace.visualstudio.com/items?itemName=FrontlineSystems.rason-mcp)
|
|
6
|
+
[](https://www.npmjs.com/package/@frontlinesystems/rason-mcp-server)
|
|
7
|
+
|
|
8
|
+
AI-powered platform for decision intelligence: building, analyzing, and solving optimization, simulation, data science, and decision models with RASON.
|
|
9
|
+
|
|
10
|
+
<sub><i>RASON MCP Server in Claude Desktop — solving a product mix optimization model with results table, constraint utilization chart, and key insights.</i></sub>
|
|
11
|
+
|
|
12
|
+
<sub><i>🔍 Click the screenshot to view full size.</i></sub>
|
|
13
|
+
|
|
14
|
+
<a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/opt.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/opt.png" alt="RASON MCP Server in Claude Desktop — solving a product mix optimization model with results table, constraint utilization chart, and key insights" width="768"></a>
|
|
15
|
+
|
|
16
|
+
### Works across all major RASON model types
|
|
17
|
+
|
|
18
|
+
Click any model type to see it in action.
|
|
19
|
+
|
|
20
|
+
<table>
|
|
21
|
+
<tr>
|
|
22
|
+
<td align="center" width="20%"><a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/opt.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/opt.png" width="150" height="250" alt="Optimization example in Claude Desktop"></a><br><sub><b>Optimization</b></sub></td>
|
|
23
|
+
<td align="center" width="20%"><a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/sim.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/sim.png" width="150" height="250" alt="Simulation example in Claude Desktop"></a><br><sub><b>Simulation</b></sub></td>
|
|
24
|
+
<td align="center" width="20%"><a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/calc.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/calc.png" width="150" height="250" alt="Decision Tables example in Claude Desktop"></a><br><sub><b>Decision Tables</b></sub></td>
|
|
25
|
+
<td align="center" width="20%"><a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/dm.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/dm.png" width="150" height="250" alt="Data Science example in Claude Desktop"></a><br><sub><b>Data Science</b></sub></td>
|
|
26
|
+
<td align="center" width="20%"><a href="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/flow.png"><img src="https://raw.githubusercontent.com/FrontlineSystems/media/refs/heads/main/claude/light/flow.png" width="150" height="250" alt="Multi-Stage Flows example in Claude Desktop"></a><br><sub><b>Multi-Stage Flows</b></sub></td>
|
|
27
|
+
</tr>
|
|
28
|
+
</table>
|
|
29
|
+
|
|
30
|
+
## What is RASON?
|
|
31
|
+
|
|
32
|
+
[RASON](https://www.solver.com/rason) (Restful Analytic Solver® Object Notation) is a multi-purpose modeling language and decision intelligence platform by [Frontline Systems](https://www.solver.com) for building, analyzing, and solving mathematical optimization, simulation / risk analysis, and data science / machine learning models, plus business decision rules and multi-stage decision flows.
|
|
33
|
+
|
|
34
|
+
You can use RASON models on your desktop with [RASON Desktop](https://www.solver.com/rason-desktop) for VS Code, Power BI Desktop and Excel Desktop; in the Azure cloud with a REST API working with Microsoft Fabric, Power BI Service and Excel for the Web; in Docker containers; and in your own app written in C/C++, C#, Java, Python, and R via Frontline's [Solver SDK](https://www.solver.com/solver-sdk-platform).
|
|
35
|
+
|
|
36
|
+
RASON comes with world-class solvers for mathematical optimization, advanced probability distributions and simulation, powerful machine learning algorithms, rich DMN business rule handling, and easy-to-build multi-stage decision flows with an in-memory SQL engine.
|
|
37
|
+
|
|
38
|
+
## About This MCP Server
|
|
39
|
+
|
|
40
|
+
This MCP server is more than a REST API wrapper — it's a complete AI infrastructure for analytical modeling. It includes a searchable library of nearly 200 example models, templates that guide model generation, structural analysis, and solve result interpretation. An AI assistant connected to this server can help formulate a model from a business problem description, find relevant examples, explain model structure, submit it for solving, and present results in a goal-oriented way — closing the loop with suggested next steps and improvements.
|
|
41
|
+
|
|
42
|
+
## What Can You Do With It?
|
|
43
|
+
|
|
44
|
+
**Explore nearly 200 ready-made examples**
|
|
45
|
+
|
|
46
|
+
> "Find examples of portfolio optimization"
|
|
47
|
+
>
|
|
48
|
+
> "Show me a vehicle routing model I can start from"
|
|
49
|
+
>
|
|
50
|
+
> "What simulation examples are available?"
|
|
51
|
+
|
|
52
|
+
**Build models from templates**
|
|
53
|
+
|
|
54
|
+
> "Create a new linear optimization model"
|
|
55
|
+
>
|
|
56
|
+
> "Give me a decision table template"
|
|
57
|
+
>
|
|
58
|
+
> "Start a simulation model from scratch"
|
|
59
|
+
|
|
60
|
+
**Analyze and understand models**
|
|
61
|
+
|
|
62
|
+
> "Describe the structure of this model — what type is it?"
|
|
63
|
+
>
|
|
64
|
+
> "What variables and constraints does this optimization model have?"
|
|
65
|
+
>
|
|
66
|
+
> "Explain what this model is doing"
|
|
67
|
+
|
|
68
|
+
**Solve optimization, simulation, data science & decision models**
|
|
69
|
+
|
|
70
|
+
> "Solve this product mix model and show me the optimal allocation"
|
|
71
|
+
>
|
|
72
|
+
> "Run a Monte Carlo simulation on this risk model"
|
|
73
|
+
>
|
|
74
|
+
> "Evaluate this decision table with the following inputs"
|
|
75
|
+
>
|
|
76
|
+
> "Train a classification model to predict customer churn"
|
|
77
|
+
|
|
78
|
+
**Go beyond simple commands**
|
|
79
|
+
|
|
80
|
+
> "I have a scheduling problem with 8 employees and shift constraints — build me an optimization model, solve it, and show the schedule as a table"
|
|
81
|
+
>
|
|
82
|
+
> "Find a portfolio optimization example, adapt it for 3 assets with a 15% risk budget, solve it, and summarize the allocation"
|
|
83
|
+
>
|
|
84
|
+
> "Submit my model for solve, keep polling status, and when it's done show results in a table with key insights"
|
|
85
|
+
>
|
|
86
|
+
> "This model is infeasible — run diagnostics and suggest which constraints to relax"
|
|
87
|
+
|
|
88
|
+
**Manage models in your RASON account**
|
|
89
|
+
|
|
90
|
+
> "List all my optimization models"
|
|
91
|
+
>
|
|
92
|
+
> "Upload this RASON model with its CSV data files"
|
|
93
|
+
>
|
|
94
|
+
> "Create a new version of 'supply-chain' and set it as the champion"
|
|
95
|
+
>
|
|
96
|
+
> "Clean up all old versions of 'product-mix' — keep only the champion"
|
|
97
|
+
|
|
98
|
+
## Getting Started
|
|
99
|
+
|
|
100
|
+
Prerequisites:
|
|
101
|
+
|
|
102
|
+
- Node.js 18 or later
|
|
103
|
+
- A RASON bearer token only if you want to solve models, run diagnostics, or manage cloud models
|
|
104
|
+
|
|
105
|
+
Add the server to your MCP client's configuration. For most clients, use this server entry under the client's MCP server map:
|
|
106
|
+
|
|
107
|
+
```json
|
|
108
|
+
{
|
|
109
|
+
"mcpServers": {
|
|
110
|
+
"rason": {
|
|
111
|
+
"command": "npx",
|
|
112
|
+
"args": ["-y", "@frontlinesystems/rason-mcp-server"],
|
|
113
|
+
"env": {
|
|
114
|
+
"RASON_BEARER_TOKEN": "your_token_here"
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
You can omit `env` or `RASON_BEARER_TOKEN` to use the no-account tools only.
|
|
122
|
+
|
|
123
|
+
Where to put this depends on your client:
|
|
124
|
+
|
|
125
|
+
<details>
|
|
126
|
+
<summary><strong>Claude Desktop</strong></summary>
|
|
127
|
+
|
|
128
|
+
Add the config above to your config file:
|
|
129
|
+
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
130
|
+
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
131
|
+
|
|
132
|
+
See [Claude Desktop MCP setup](https://modelcontextprotocol.io/docs/develop/connect-local-servers) for details.
|
|
133
|
+
|
|
134
|
+
</details>
|
|
135
|
+
|
|
136
|
+
<details>
|
|
137
|
+
<summary><strong>VS Code (Copilot Chat)</strong></summary>
|
|
138
|
+
|
|
139
|
+
Create or update an MCP configuration file such as `.vscode/mcp.json` in your workspace or the user-level MCP config, using VS Code's `"servers"` shape:
|
|
140
|
+
|
|
141
|
+
```json
|
|
142
|
+
{
|
|
143
|
+
"servers": {
|
|
144
|
+
"rason": {
|
|
145
|
+
"type": "stdio",
|
|
146
|
+
"command": "npx",
|
|
147
|
+
"args": ["-y", "@frontlinesystems/rason-mcp-server"],
|
|
148
|
+
"env": {
|
|
149
|
+
"RASON_BEARER_TOKEN": "your_token_here"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
Or install the [RASON MCP Server extension](https://marketplace.visualstudio.com/items?itemName=FrontlineSystems.rason-mcp) for automatic setup.
|
|
157
|
+
|
|
158
|
+
See [VS Code MCP setup](https://code.visualstudio.com/docs/copilot/customization/mcp-servers) for details.
|
|
159
|
+
|
|
160
|
+
</details>
|
|
161
|
+
|
|
162
|
+
<details>
|
|
163
|
+
<summary><strong>Claude Code</strong></summary>
|
|
164
|
+
|
|
165
|
+
```bash
|
|
166
|
+
claude mcp add --transport stdio --env RASON_BEARER_TOKEN=your_token_here rason -- npx -y @frontlinesystems/rason-mcp-server
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
You can omit `--env RASON_BEARER_TOKEN=...` to use only the no-account tools.
|
|
170
|
+
|
|
171
|
+
See [Claude Code MCP setup](https://code.claude.com/docs/en/mcp) for details.
|
|
172
|
+
|
|
173
|
+
</details>
|
|
174
|
+
|
|
175
|
+
<details>
|
|
176
|
+
<summary><strong>Cursor</strong></summary>
|
|
177
|
+
|
|
178
|
+
Add the config above under `"mcpServers"` in `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global).
|
|
179
|
+
|
|
180
|
+
See [Cursor MCP setup](https://cursor.com/docs/mcp) for details.
|
|
181
|
+
|
|
182
|
+
</details>
|
|
183
|
+
|
|
184
|
+
<details>
|
|
185
|
+
<summary><strong>Windsurf</strong></summary>
|
|
186
|
+
|
|
187
|
+
Add the config above under `"mcpServers"` in `~/.codeium/windsurf/mcp_config.json`.
|
|
188
|
+
|
|
189
|
+
See [Windsurf MCP setup](https://docs.windsurf.com/windsurf/cascade/mcp) for details.
|
|
190
|
+
|
|
191
|
+
</details>
|
|
192
|
+
|
|
193
|
+
<details>
|
|
194
|
+
<summary><strong>Other MCP Clients</strong></summary>
|
|
195
|
+
|
|
196
|
+
This server works with any MCP-compatible client over stdio. Configure it with:
|
|
197
|
+
- **Command**: `npx`
|
|
198
|
+
- **Arguments**: `-y @frontlinesystems/rason-mcp-server`
|
|
199
|
+
- **Transport**: stdio
|
|
200
|
+
- **Environment variables**: See [Configuration](#configuration) below
|
|
201
|
+
|
|
202
|
+
</details>
|
|
203
|
+
|
|
204
|
+
## Works Without a RASON Account
|
|
205
|
+
|
|
206
|
+
Example search, model templates, model analysis, and RASON info tools work without credentials. You can explore the full example library and build models before signing up. A [RASON account](https://rason.com) is needed only for solving models and managing models in the cloud.
|
|
207
|
+
|
|
208
|
+
## Configuration
|
|
209
|
+
|
|
210
|
+
Set these environment variables in your MCP client config (see [Getting Started](#getting-started) above):
|
|
211
|
+
|
|
212
|
+
| Variable | Default | Description |
|
|
213
|
+
|----------|---------|-------------|
|
|
214
|
+
| `RASON_BEARER_TOKEN` | — | Auth token from your [RASON account](https://rason.com). Required for solving and model management. |
|
|
215
|
+
| `RASON_SERVER_URL` | `https://rason.net` | RASON server URL. |
|
|
216
|
+
| `RASON_RESULT_ARRAY_LIMIT` | `25` | Max array/dataFrame rows before summarizing |
|
|
217
|
+
| `RASON_RESULT_SIZE_LIMIT` | `50000` | Max result characters before truncating |
|
|
218
|
+
| `RASON_REQUEST_TIMEOUT` | `300000` | Request timeout in ms (default: 5 minutes) |
|
|
219
|
+
|
|
220
|
+
## Tools
|
|
221
|
+
|
|
222
|
+
<details>
|
|
223
|
+
<summary><strong>All 20 tools</strong></summary>
|
|
224
|
+
|
|
225
|
+
### Examples & Templates
|
|
226
|
+
|
|
227
|
+
- **search_examples** — Search ~200 example models by keyword or type (optimization, simulation, datamining/data science, calculation/decision tables, flow/multi-stage pipelines)
|
|
228
|
+
- **get_example** — Retrieve a specific example model with full definition and metadata
|
|
229
|
+
- **get_model_template** — Get a bare JSON scaffold for a model type: blank, optimization, simulation, sim-optimization, data-science, workflow, decision-table, power-bi
|
|
230
|
+
|
|
231
|
+
### Analysis
|
|
232
|
+
|
|
233
|
+
- **describe_model** — Analyze model structure: type/subtype detection, component inventory, issue identification
|
|
234
|
+
- **about_rason** — RASON capabilities, model types, Frontline Systems ecosystem, and server info
|
|
235
|
+
|
|
236
|
+
### Solving
|
|
237
|
+
|
|
238
|
+
- **solve_model** — Solve a model synchronously (inline RASON, RASON files, or Excel workbooks)
|
|
239
|
+
- **submit_solve** — Submit a model for asynchronous solving (long-running models)
|
|
240
|
+
- **get_solve_status** — Check solving status and progress
|
|
241
|
+
- **get_solve_result** — Retrieve the result once solving is complete
|
|
242
|
+
- **stop_solve** — Stop a running solve (intermediate results may be available)
|
|
243
|
+
|
|
244
|
+
### Diagnostics
|
|
245
|
+
|
|
246
|
+
- **diagnose_model** — Run diagnostics synchronously (useful for infeasible/unbounded optimization models)
|
|
247
|
+
- **submit_diagnose** — Submit for asynchronous diagnostics
|
|
248
|
+
|
|
249
|
+
### Model Management
|
|
250
|
+
|
|
251
|
+
- **list_models** — List models in your account with optional filters by type and kind
|
|
252
|
+
- **get_model** — Retrieve a model definition (RASON JSON)
|
|
253
|
+
- **post_model** — Create a new model from a RASON JSON definition
|
|
254
|
+
- **post_model_with_files** — Upload a model with file attachments (RASON + data files, or Excel)
|
|
255
|
+
- **put_model** — Update an existing model or create a new version
|
|
256
|
+
- **put_model_with_files** — Update a model with file attachments
|
|
257
|
+
- **set_champion** — Set or unset the champion (default) version of a model
|
|
258
|
+
- **delete_model** — Delete models with flexible filtering by kind, type, and force option
|
|
259
|
+
|
|
260
|
+
</details>
|
|
261
|
+
|
|
262
|
+
## Prompts & Resources
|
|
263
|
+
|
|
264
|
+
The server includes **12 guided prompts** for common workflows (solving, uploading, diagnostics, model management) and **2 resources** — a live model catalog and a browsable example library reference.
|
|
265
|
+
|
|
266
|
+
## Disclaimer
|
|
267
|
+
|
|
268
|
+
This software is provided "as is", without warranty of any kind. Use of this MCP server involves interaction with external cloud services (RASON REST API). You are responsible for reviewing actions before they are executed, managing your own credentials securely, and ensuring compliance with applicable terms of service. Before uploading models, files, or data to RASON cloud services, review Frontline Systems' [Terms and Conditions](https://www.solver.com/terms-conditions) and [Privacy Policy](https://www.solver.com/privacy). AI-generated model formulations and interpretations of solve results should be validated before use in production or decision-making.
|
|
269
|
+
|
|
270
|
+
## License
|
|
271
|
+
|
|
272
|
+
Copyright © 2026 Frontline Systems, Inc. All rights reserved. This is proprietary software; no part may be reproduced, distributed, or modified without prior written permission from Frontline Systems. Use is governed by the [Frontline Systems Software License](https://github.com/FrontlineSystems/media/blob/main/LICENSE). For licensing inquiries, contact [Frontline Systems](https://www.solver.com/how-may-we-help-you).
|
|
273
|
+
|
|
274
|
+
## Feedback and Support
|
|
275
|
+
|
|
276
|
+
This software is developed and maintained by **Frontline Systems, Inc.** For questions, feedback, or licensing inquiries, please contact your Frontline representative or reach us at [solver.com/how-may-we-help-you](https://www.solver.com/how-may-we-help-you).
|
|
277
|
+
|
|
278
|
+
## Links
|
|
279
|
+
|
|
280
|
+
- [RASON Portal](https://rason.com) — Create a free account, manage models, documentation
|
|
281
|
+
- [Frontline Systems](https://www.solver.com) — The company behind RASON and Analytic Solver
|
|
282
|
+
- [MCP Protocol](https://modelcontextprotocol.io) — Learn about the Model Context Protocol
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
# RASON Example Library
|
|
2
|
+
|
|
3
|
+
**200+ example models** demonstrating RASON's optimization, simulation, data science, and decision modeling capabilities.
|
|
4
|
+
|
|
5
|
+
Use the `search_examples` tool to find specific models, then `get_example` to retrieve the full source.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Optimization (61 models)
|
|
10
|
+
|
|
11
|
+
**Linear Programming (10 models)**
|
|
12
|
+
Product mix, inventory management, resource allocation, scheduling
|
|
13
|
+
Data integration: CSV, Excel, SQL database binding
|
|
14
|
+
|
|
15
|
+
**Non-Linear Optimization (3 models)**
|
|
16
|
+
Airline hub location, network design, facility placement
|
|
17
|
+
|
|
18
|
+
**Conic Optimization (5 models)**
|
|
19
|
+
Second-order cone problems, robust optimization
|
|
20
|
+
|
|
21
|
+
**Quadratic Optimization (2 models)**
|
|
22
|
+
Portfolio optimization, risk management, variance minimization
|
|
23
|
+
|
|
24
|
+
**Non-Smooth Optimization (1 model)**
|
|
25
|
+
Inventory optimization with non-smooth objectives
|
|
26
|
+
|
|
27
|
+
**Stochastic Optimization (6 models)**
|
|
28
|
+
Optimization under uncertainty, chance constraints, recourse models, robust optimization
|
|
29
|
+
|
|
30
|
+
**Data Binding Examples (9 models)**
|
|
31
|
+
Optimization with Excel, CSV, SQL data sources, inline tables, pivot tables
|
|
32
|
+
|
|
33
|
+
**Other Optimization Models (25 models)**
|
|
34
|
+
Various optimization problems and techniques
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Simulation (16 models)
|
|
39
|
+
|
|
40
|
+
Monte Carlo simulation, stochastic processes, probability models
|
|
41
|
+
Examples: College fund growth, GBM simulation, candy store sales, yield management
|
|
42
|
+
Integration with optimization (simulation-optimization)
|
|
43
|
+
|
|
44
|
+
---
|
|
45
|
+
|
|
46
|
+
## Calculation (32 models)
|
|
47
|
+
|
|
48
|
+
**Decision Tables (10+ models)**
|
|
49
|
+
Hit policies (unique, first, priority, collect), expressions, date/time handling, data sources
|
|
50
|
+
Loan recommendation and strategy examples
|
|
51
|
+
|
|
52
|
+
**Box Functions & Iterators (8+ models)**
|
|
53
|
+
Custom box functions, FEEL expressions, FOR/SOME/EVERY loops
|
|
54
|
+
Lambda functions, type definitions
|
|
55
|
+
|
|
56
|
+
**Other Calculations (14+ models)**
|
|
57
|
+
Various calculation models and formulas
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
## Data Science (74 models)
|
|
62
|
+
|
|
63
|
+
**Classification (7 models)**
|
|
64
|
+
Decision trees, neural networks, logistic regression, discriminant analysis, naive bayes, nearest neighbors
|
|
65
|
+
|
|
66
|
+
**Classification Ensembles (6 models)**
|
|
67
|
+
Bagging, boosting, random forests
|
|
68
|
+
|
|
69
|
+
**Regression (5 models)**
|
|
70
|
+
Linear regression, nearest neighbors, decision trees
|
|
71
|
+
|
|
72
|
+
**Clustering (2 models)**
|
|
73
|
+
K-means, hierarchical clustering
|
|
74
|
+
|
|
75
|
+
**Time Series Forecasting (8 models)**
|
|
76
|
+
ARIMA, exponential smoothing, Holt-Winters (additive/multiplicative/no-trend), moving average, lag analysis
|
|
77
|
+
|
|
78
|
+
**Feature Selection (3 models)**
|
|
79
|
+
Univariate selection, wrapper methods (linear and logistic)
|
|
80
|
+
|
|
81
|
+
**Text Mining (3 models)**
|
|
82
|
+
TF-IDF, latent semantic analysis
|
|
83
|
+
|
|
84
|
+
**Transformation (16 models)**
|
|
85
|
+
PCA, canonical variate analysis, rescaling, binning, partitioning, sampling, stratified sampling, one-hot encoding, category reduction, missing data handling, oversampling
|
|
86
|
+
|
|
87
|
+
**Affinity Analysis (1 model)**
|
|
88
|
+
Association rules, market basket analysis
|
|
89
|
+
|
|
90
|
+
**Data Sources (7 models)**
|
|
91
|
+
CSV, JSON, Excel, MS Access, MS SQL, ODATA, ODBC connections
|
|
92
|
+
|
|
93
|
+
**Scoring (12 models)**
|
|
94
|
+
Apply fitted models using JSON or PMML formats
|
|
95
|
+
Classifiers, regressors, forecasters, transformers, clusterers
|
|
96
|
+
|
|
97
|
+
**Other Data Science Models (4+ models)**
|
|
98
|
+
Simulation, summarization, and other analytics techniques
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Decision Flows (6 models)
|
|
103
|
+
|
|
104
|
+
Multi-stage pipelines and workflows
|
|
105
|
+
Examples: optimization→simulation, data science→calculation, scoring workflows
|
|
106
|
+
Inline and reusable stage patterns
|
|
107
|
+
|
|
108
|
+
---
|
|
109
|
+
|
|
110
|
+
## RASON Feature Demos (40 models)
|
|
111
|
+
|
|
112
|
+
Language feature examples and reference guide demonstrations
|
|
113
|
+
|
|
114
|
+
**Arrays (5 models)**
|
|
115
|
+
Parallel arrays, indexed arrays, non-parallel arrays, SUM aggregates
|
|
116
|
+
|
|
117
|
+
**Loops (4 models)**
|
|
118
|
+
Loop syntax, nested loops, if-then-else, while statements
|
|
119
|
+
|
|
120
|
+
**Data Filtering (1 model)**
|
|
121
|
+
Using filters with arrays and tables
|
|
122
|
+
|
|
123
|
+
**Box Functions & Iterators (8+ models)**
|
|
124
|
+
Box iterator examples, FEEL expressions, custom functions, lambda functions
|
|
125
|
+
|
|
126
|
+
**Reference & User Guide Examples (22+ models)**
|
|
127
|
+
Examples from RASON Reference Guide and User Guide
|
|
128
|
+
Comprehensive demonstrations of RASON language features and syntax
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"modelName": "AirlineHubConicExample",
|
|
3
|
+
"modelDescription": "Conic Constraint Optimization Example RASON Model: This model minimizes the distance between several regional airports and a proposed hub location. In the original AirlineHub models, found within the Nonlinear examples, the Pythagorean Theorem was used to calculate the distance of each city to the proposed airport hub location. Since this distance calculation was nonlinear, a nonlinear engine was required to solve the model, such as the Standard GRG Engine. In this example, however, we will use 6 conic constraints (one for each regional airline location) to calculate the distance between the airline hub and the regional airports. Removing the nonlinear functions and replacing them with conic constraints results in a SOCP Convex model which can be solved faster and more reliably with the SOCP engine.",
|
|
4
|
+
"modelType": "optimization",
|
|
5
|
+
"engineSettings": {
|
|
6
|
+
"comment": "Since this model uses conic constraints, the SOCP Barrier engine must be selected. A simple example of a conic constraint is a non-negativity constraint on the decision variables. A non-negativity constraint simply means that all variables must be greater than 0. In this model, the variable blocks F21:F26, G21:G26 and H21:H26 must lie within a 2nd order cone (also called a Lorentz cone or 'ice cream cone'). This cone places a bound on the L2-norm of the vector of decision variables. In this model, if the variables in cells F21:F26, G21:G26 and H21:H26 lie within a code, then FX >= SQRT(SUMSQ(GX:HX))",
|
|
7
|
+
"engine": "SOCP Barrier"
|
|
8
|
+
},
|
|
9
|
+
"variables": {
|
|
10
|
+
"comment": "There are 21 total variables in the model.",
|
|
11
|
+
"x": {
|
|
12
|
+
"comment": "The x variable represents the x coordinate of the proposed hub location.",
|
|
13
|
+
"value": 1.0,
|
|
14
|
+
"finalValue": []
|
|
15
|
+
},
|
|
16
|
+
"y": {
|
|
17
|
+
"comment": "The y variable represents the y coordinate of the proposed hub location.",
|
|
18
|
+
"value": 1.0,
|
|
19
|
+
"finalValue": []
|
|
20
|
+
},
|
|
21
|
+
"z": {
|
|
22
|
+
"comment": "The z variable is an artificial variable that will be used to 'squash' or incentivize RASON Decision Services to find a location for the hub that minimizes the distances between the hub and each regional airport.",
|
|
23
|
+
"value": 1.0,
|
|
24
|
+
"finalValue": []
|
|
25
|
+
},
|
|
26
|
+
"f21:f26": {
|
|
27
|
+
"comment": "These variables are new to the conic formulation. These are required to setup the conic constraints, see below. Each set of three variables, for example F21:H21, must belong to a second order cone constraint (F21:H21 = conic) which can be rewritten as F21 >= SQRT(SUMSQ(G21:H21). The 6 conic constraints replace the nonlinear distance calculation in the C1, C2, C3, C4, C5 and C6 constraints in the AirlineHub model.",
|
|
28
|
+
"value": 1.0
|
|
29
|
+
},
|
|
30
|
+
"g21:g26": {
|
|
31
|
+
"comment": "These variables are new to the conic formulation. These are required to setup the conic constraints, see below.",
|
|
32
|
+
"value": 1.0
|
|
33
|
+
},
|
|
34
|
+
"h21:h26": {
|
|
35
|
+
"comment": "These variables are new to the conic formulation. These are required to setup the conic constraints, see below.",
|
|
36
|
+
"value": 1.0
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"data": {
|
|
40
|
+
"comment": "The data section (optional) can be used to setup constant arrays or generate formulas to be utilized in the constraints and objective. ",
|
|
41
|
+
"corx": {
|
|
42
|
+
"comment": "This array contains the x coordinates for each regional airport.",
|
|
43
|
+
"dimensions": [ 6 ],
|
|
44
|
+
"value": [ 1, 0.5, 2, 2, 2, 0.5 ]
|
|
45
|
+
},
|
|
46
|
+
"cory": {
|
|
47
|
+
"comment": "This array contains the y coordinates for each regional airport.",
|
|
48
|
+
"dimensions": [ 6 ],
|
|
49
|
+
"value": [ 4, 3, 4, 2, 5, 6 ]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"constraints": {
|
|
53
|
+
"dx": {
|
|
54
|
+
"comment": "The differences between the x coordinates of the hub and each regional airport. This constraint is set equal to the new variables, G21:G26.",
|
|
55
|
+
"dimensions": [ 6 ],
|
|
56
|
+
"formula": "corx - x - g21:g26",
|
|
57
|
+
"lower": 0,
|
|
58
|
+
"upper": 0
|
|
59
|
+
},
|
|
60
|
+
"dy": {
|
|
61
|
+
"comment": "The differences between the y coordinates of the hub and each regional airport. This constraint is set equal to the new variables, H21:H26.",
|
|
62
|
+
"dimensions": [ 6 ],
|
|
63
|
+
"formula": "cory - y - h21:h26",
|
|
64
|
+
"lower": 0,
|
|
65
|
+
"upper": 0
|
|
66
|
+
},
|
|
67
|
+
"dz": {
|
|
68
|
+
"comment": "The effect of this constraint, coupled with the minimization of the z artificial variable, results in the artificial variable becoming equal to the maximum value in the f21:f26 variable array, in the final solution",
|
|
69
|
+
"dimensions": [ 6 ],
|
|
70
|
+
"formula": "f21:f26 - z",
|
|
71
|
+
"upper": 0
|
|
72
|
+
},
|
|
73
|
+
"cone1": {
|
|
74
|
+
"comment": "This comment applies to all 6 cone constraints, below. Each set of 3 variables for example, F21, G21 and H21, must belong to a second order cone constraint which can be rewritten as F21 >= SQRT(SumSQ(G21:H21). These 6 conic constraints replace the nonlinear distance constraints in the original AirlineHub example.",
|
|
75
|
+
"value": "f21:h21",
|
|
76
|
+
"type": "cone"
|
|
77
|
+
},
|
|
78
|
+
"cone2": {
|
|
79
|
+
"comment": "cone constraint for f22, g22 and h22",
|
|
80
|
+
"value": "f22:h22",
|
|
81
|
+
"type": "cone"
|
|
82
|
+
},
|
|
83
|
+
"cone3": {
|
|
84
|
+
"comment": "cone constraint for f23, g23 and h23",
|
|
85
|
+
"value": "f23:h23",
|
|
86
|
+
"type": "cone"
|
|
87
|
+
},
|
|
88
|
+
"cone4": {
|
|
89
|
+
"comment": "cone constraint for f24, g24 and h24",
|
|
90
|
+
"value": "f24:h24",
|
|
91
|
+
"type": "cone"
|
|
92
|
+
},
|
|
93
|
+
"cone5": {
|
|
94
|
+
"comment": "cone constraint for f25, g25 and h25",
|
|
95
|
+
"value": "f25:h25",
|
|
96
|
+
"type": "cone"
|
|
97
|
+
},
|
|
98
|
+
"cone6": {
|
|
99
|
+
"comment": "cone constraint for f26, g26 and h26",
|
|
100
|
+
"value": "f26:h26",
|
|
101
|
+
"type": "cone"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"objective": {
|
|
105
|
+
"obj": {
|
|
106
|
+
"comment": "The objective, the z variable, is a decision variable being minimized. The effect of this variable being minimized, coupled with the dz constraint, results in the dz variable being equal to the max of F21:F26 variable values in the final solution.",
|
|
107
|
+
"formula": "z",
|
|
108
|
+
"type": "minimize",
|
|
109
|
+
"finalValue": []
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|