LastMile AI
Free value-added services
AI office tools AI improves efficiency

LastMile AI

LastMile AI: an intelligent tool focused on improving AI efficiency.

Tags:

What is LastMile AI?

LastMile AI was originally a platform designed for developers working with generative AI, offering tools for debugging, evaluation, and improvement; it provided AI Workbooks, AutoEval, datasets, experimental capabilities, as well as APIs. Over time, the product’s focus has expanded to include agents, model context protocols, and cognitive computing.

The most significant change at present is that the LastMile AI team has joined Meta Superintelligence Labs’ organization for product and application research. The previous standalone website now mainly provides information on the team’s direction and vision; it no longer displays details related to registering for the commercial platform, making purchases, or accessing existing packages.

How should the current status be understood?

LastMile AI cannot be simply classified as an independent SaaS product that is still being sold normally. The catalog entries should consider the original commercial platform as a legacy product, while treating the open-source project that is still under maintenance as the core capability that is currently available for use.

ProjectCurrent statusHow to label it appropriately
LastMile AI teamJoined Meta Superintelligence LabsThe team has been integrated into Meta’s related organizations.
The original LastMile development platformThe document is still accessible, but there is no obvious option to purchase it.The availability of historical platforms or those currently in use is yet to be confirmed.
mcp-agentOpen source and under continuous maintenanceCurrent key open-source agent frameworks
AIConfigMake it publicly open-source and retain the development materials.Model and prompt configuration framework
mcp-evalOpen sourceMCP server and agent evaluation tools
MCP-CloudOpen testing phaseIt is currently available for free testing; rules may change in the future.

The most noteworthy open-source projects at the moment

  • mcp-agent: Uses MCP to connect models, tools, and external services in order to create composable agent workflows.
  • AIConfig: Separates prompts, models, parameters, and runtime configurations from the application code.
  • mcp-eval: Runs tests and quality assessments in an environment where a real proxy interacts with the MCP server.
  • OpenAI Apps example: Demonstrates how to host backend projects for application integration.
  • MCP registry search item: Provides semantic retrieval and service interfaces for the MCP server directory.

Core capabilities of mcp-agent

mcp-agent is currently LastMile AI’s most representative open-source project; it is a MCP-based intelligent agent framework primarily written in Python. This framework handles matters such as the lifecycle of MCP server connections, tool calls, configuration, logging, and execution context, allowing developers to focus on the behavior of the agents and the business processes involved.

  • It supports features such as MCP tools, resources, prompts, notifications, OAuth, sampling, and user guidance.
  • It offers combination patterns such as routing, parallelism, orchestration, evaluation and optimization, as well as multi-agent collaboration.
  • The agent applications can be re-exposed as standard MCP servers.
  • It supports normal asynchronous execution, and can also be integrated with Temporal to enable pause, resume, retry, and persistent execution.
  • It provides structured logging, OpenTelemetry monitoring, and token usage tracking.
  • It can connect to various model providers as well as existing MCP servers.
  • Provides commands for project initialization, configuration, execution, installation, and cloud deployment.

mcp-agent workflow mode

PatternMain functionSuitable scenarios
RoutingBased on the task, it is determined which model, agent, or tool should be used.Multi-intent customer service and task routing
Parallel processingExecute multiple independent sub-tasks simultaneouslyMulti-channel retrieval and batch analysis
Orchestrator and worker nodesBreak down complex goals and aggregate the results of multiple nodesResearch, reporting, and complex automation
Evaluation and optimizationAfter the results are generated, they are checked against standards and improved iteratively.Copywriting, code, and high-quality answers
Multi-agent handoverAllow agents with different specialties to take over tasks based on certain conditions.Multi-departmental processes and professional consulting
Persistent executionSaves the workflow status and supports pausing, resuming, and retrying.Long-duration tasks and manual approval

How to start using mcp-agent

The MCP-agent is suitable for developers who are familiar with Python, model APIs, and the basic concepts of MCP. Before getting started, it is necessary to have a Python environment ready, as well as the credentials for the selected model service, along with at least one MCP server to which a connection is desired.

  1. Install the recommended Python projects and dependency management tools.
  2. Initialize a new mcp-agent project and select a basic template.
  3. Register the MCP servers that need to be connected in the configuration file.
  4. Store the model key in a dedicated secret configuration or environment variable; do not commit it to the code repository.
  5. Create a proxy name, instructions, and a list of accessible servers.
  6. Select the model adapter and combine routing, parallel processing, or evaluation and optimization workflows.
  7. Run it locally first to check the tool’s permissions, logs, tokens, and error handling.
  8. Decide whether to use self-hosting, run it persistently, or deploy it to MCP-Cloud after conducting the tests.

MCP connection and proxy server

The framework can be used as an MCP client to connect to file systems, search engines, databases, and enterprise services; it can also be utilized to deploy complete proxy applications as new MCP servers. This enables desktop assistants, code editors, or custom clients to invoke complex workflows through a unified protocol.

Usage methodEnterOutputKey points to note
Connect to the existing MCP serverServer commands, transmission methods, and permissionsTools and resources available for agent invocationOnly the permissions necessary for completing the task are granted.
Combine multiple serversMultiple service configurationsUnified toolsetHandle name conflicts, timeouts, and failure isolation
The exposure proxy is an MCP server.Agents, workflows, and utility functionsStandard MCP endpointConfigure authentication, throttling, and auditing.
Connect to the desktop or editor clientDeployment address and access credentialsAgents that can be invoked within the clientCredentials cannot be written to the public configuration.

Persistent execution and observability

Simple projects can make use of an asynchronous execution engine, while complex tasks can switch to theTemporal backend. Persistent execution is suitable for agents that need to run for extended periods, require human confirmation, allow for automatic retries, or need to resume operation after being interrupted.

  • Structured logs help identify abnormalities in models, tools, and workflows.
  • OpenTelemetry can record the entire call chain and execution spans.
  • The token count is used to track the consumption of agents, workflows, and model nodes.
  • Observers can trigger alerts or take control actions when usage reaches a threshold.
  • A persistent history facilitates the inspection of pause, retry, and manual input processes.

What is AIConfig?

AIConfig saves prompts, model names, parameters, variables, and chain dependencies as serializable configurations, thereby separating the behavior of generative AI from the application code. These configuration files can be placed under version control, and they can be edited, tested, and compared using an editor.

  • Use unified configuration to save prompts, model, and inference parameters.
  • It supports Python and Node development methods.
  • It is possible to run prompt chains with variables and dependencies.
  • It supports expansion with multiple modalities such as text, images, and audio.
  • It allows access to different models and custom inference endpoints.
  • It is suitable for managing prompt versions, evaluation codes, and application code separately.

AIConfig usage process

  1. Install Python packages or Node software packages according to the project’s language.
  2. Create an AIConfig configuration file and enter the name, model, and default parameters.
  3. Set a separate name, variable, and dependencies for each prompt.
  4. Run the prompt in the editor and observe the model’s output.
  5. Include stable configurations in version control and subject them to code review.
  6. Load the configuration in the application, and invoke the specified prompt at runtime.
  7. Compare the performance of models, parameters, and prompt versions using the test set.

What is MCP-EVAL?

mcp-eval is used to test MCP servers as well as the agents that call these servers; it runs actual agents to interact with the servers, rather than merely simulating a single function. The testing process allows for the recording of the sequence of actions taken, the response content, delays, tokens, costs, and comprehensive tracking data.

  • It supports various testing methods such as decorators, pytest, and data-driven testing.
  • It is possible to determine whether a specific tool has been invoked, how many times it has been called, and in what order it was executed.
  • It is possible to check the response text, regular expression patterns, and structured conditions.
  • It supports limits on response time, the number of model calls, and path efficiency.
  • LLM reviewers can be used to assess the quality of the content based on a scale.
  • Test reports in JSON, HTML, and Markdown are provided.
  • It is possible to integrate with continuous integration processes to carry out regression testing.

MCP-Eval implementation steps

  1. Prepare Python 3.10 or a later version, as well as the MCP server that is to be tested.
  2. Install mcpevals and initialize the test project.
  3. The startup method of the registration server, transmission configuration, and necessary environment variables.
  4. Create tests for normal paths, abnormal inputs, permissions, and boundaries.
  5. Set content, tools, performance, paths, or LLM judge assertions.
  6. Run the tests and check the traces, reports, and reasons for failures.
  7. Include stability testing in continuous integration to carry out regression verification after changes.

The historical capabilities of the original LastMile business platform

The older version of the LastMile development platform provided centralized management for AI Workbooks, AutoEval, datasets, experiments, synthetic annotation, and evaluation models. Workbooks enabled the combination of text, images, audio, and model elements within the same workspace, while AutoEval was used for assessing the quality of RAG-generated content.

History moduleCapabilities that were once providedCurrent usage recommendations
AI WorkbooksMultimodal model testing, unit arrangement, and collaborationDo not assume that new users can still register and use it by default.
AutoEvalDatasets, metrics, experiments, and automated evaluationDocuments can be used to enhance historical understanding.
Evaluation metricsAccuracy, relevance, summary quality, and harmful content detectionThe current model and its usability need to be verified separately.
API V2Datasets, evaluations, experiments, tuning, and permission interfacesOld endpoints should not be used directly in new projects.
Python and Node SDKInvoke platform capabilities using a keyIt should be regarded as an interface from the old platform.
VPC deploymentRun containers in the customer’s private cloudHistorical corporate solutions cannot be used as current quotes.

Price and usage costs

The price information was verified on August 23, 2026; the actual amounts, taxes, exchange rates, and discounts may vary, and the final figures will be those displayed on the settlement page.

At present, there are no reliable information available regarding the current packages or purchase prices for independent commercial LastMile platforms; the descriptions of free starter plans and enterprise VPCs in older documents cannot be used as current quotes. The open-source code itself can be used freely, but costs still apply for model invocation, servers, databases, monitoring, and maintenance.

Product or versionPriceBilling cycleCore benefits or quotaSuitable for users
Former LastMile SaaSThe current price is not available.UnclearHistory includes Workbooks, AutoEval, datasets, and APIsThe original customer who needs to verify the availability of the service first
mcp-agentOpen source and free of chargeNo subscription period requiredMCP connections, proxy mode, persistent execution, and observabilityPython Agent Development Team
AIConfigOpen source and free of chargeNo subscription period requiredTips, model and parameter configuration, as well as Python and Node runtime environmentsTeams that need to manage the configuration of generative AI applications
mcp-evalOpen source and free of chargeNo subscription period requiredMCP servers, proxies, assertions, and regression testingMCP Development and Quality Team
MCP-CloudFree during the open testing phaseRules during the testing periodHost MCP proxies, servers, keys, logs, and ensure continuous operationDevelopers who wish to deploy testing projects quickly
Models and infrastructureCharged according to the selected supplierPay-as-you-go or subscriptionModel tokens, computing, storage, networking, and monitoringAll actually deployed projects

Open-source license

ProjectLicenseCommercial understanding
mcp-agentApache-2.0Modifications are generally allowed for commercial use, but the license and related statements must be retained.
AIConfigMITTypically, use, modification, and distribution are allowed, provided that the copyright and license text are retained.
mcp-evalApache-2.0It can be used in commercial testing processes while complying with license requirements.
The original LastMile platformClosed-source commercial servicesThe entire platform cannot be labeled as open source just because some of its warehouses are open source.
Third-party models and MCP serversrespective clausesThe model, data, and connection service permissions must be checked separately.

Which users are it suitable for

  • Developers who wish to create MCP native agents using Python.
  • AI teams that require routing, parallelization, orchestration, and the evaluation of optimization strategies.
  • The product team that is preparing to release the agent as a standard MCP server.
  • Workflow developers who need to pause, resume, retry, or obtain manual approval.
  • Engineering teams that wish to separate hints and model parameters from the business code.
  • A quality team that is required to conduct real-world interaction tests on MCP servers and proxies.
  • Former users of the LastMile platform and companies that are evaluating options for migration.

Product advantages

  • mcp-agent is based on open protocols; when connecting tools, there is no need to develop a dedicated framework for each service.
  • The proxy pattern maintains composability, making it suitable for gradual expansion from simple programs.
  • The Temporal backend provides the capability for restoring and persistently executing long-running processes.
  • AIConfig facilitates version control of prompts, models, and parameters.
  • mcp-eval covers real tool calls, as well as quality, performance, and path checks.
  • The three projects cover the building, configuration, and testing phases respectively.
  • The license allows developers to modify and use it for commercial purposes once certain conditions are met.

Restrictions and risks

  • The existing business platform does not provide clear information regarding separate registration, sales, and current prices.
  • Old documents and old SDKs do not mean that the relevant cloud interfaces are still available.
  • Open-source frameworks require you to configure the models, servers, permissions, and runtime environment on your own.
  • Cloud services in the open testing phase may see changes to their prices, quotas, and availability.
  • Connecting files, databases, and enterprise systems increases the risk associated with the agent’s permissions.
  • Errors can occur in model generation, tool selection, and LLM evaluation.
  • Open-source licenses do not automatically grant third parties the right to use models, data, and services for commercial purposes.
  • Different warehouses have varying levels of activity; it is necessary to check the version and maintenance status before using them.

Checklist for migrating users from the original platform

  1. Verify that existing accounts, workspaces, API endpoints, and support channels are still accessible.
  2. Export datasets, evaluation results, experiment records, hints, and model configurations.
  3. Record the version of the SDK in use, dependencies, keys, and permission scopes.
  4. Stop using the package and service commitments from old documents as a basis for renewal.
  5. Evaluate whether AIConfig can handle prompt and model configuration management.
  6. Evaluate whether mcp-eval can reconstruct critical evaluation and regression tests.
  7. When agent orchestration is required, use mcp-agent to reimplement the core processes.
  8. Recalculate the total cost for modeling, storage, deployment, monitoring, and maintenance.
  9. Before migrating, revoke any keys that are no longer in use and remove sensitive data.

Suggestions for safe use

  • Apply the principle of least privilege and use separate credentials for each MCP server.
  • The model key is stored in a secret management system or a dedicated configuration.
  • Manual confirmation is required for actions such as writing files, sending messages, and modifying databases.
  • Limit the directories, accounts, tables, and network ranges that agents can access.
  • Hide tokens, personal information, and trade secrets in logs and traces.
  • Set strict limits on tool timeout, repeated calls, loops, and costs.
  • Use mcp-eval to handle scenarios of privilege escalation, prompt injection, and error recovery.

Frequently Asked Questions

Does LastMile AI still offer its original business platform?

The current website does not clearly display the registration, plan selection, and purchase processes of the original platform; moreover, the team has joined relevant Meta organizations. The old documents are still accessible, but this does not indicate that the commercial SaaS product is still being sold as usual.

Was LastMile AI acquired by Meta?

It is confirmed that the team has joined Meta Superintelligence Labs’ organization for product and application research. Without solid evidence, it should not be assumed that the entire company has been acquired or that the original products have become official Meta services.

Is LastMile AI an open-source product?

The original commercial platform is not a fully open-source product, but MCP-Agent, AIConfig, and MCP-Eval are released under public licenses. The documentation should clearly indicate whether the platform itself is open-source or not, as well as the open-source status of these separate repositories.

Can MCP-agent be used for free?

The framework code can be used freely under the Apache-2.0 license. However, operational costs such as those related to model APIs, computing, storage, networking, databases, and maintenance are still required.

Is MCP-Cloud charged?

The current document indicates that MCP-Cloud is in the open testing phase and can be used free of charge. The testing policies may change; for official projects, it is necessary to verify the quotas, continuity of service, and subsequent billing rules once again before deployment.

Can the old LastMile SDK still be used in new projects?

It is not recommended to use them directly without verification; the old SDKs are associated with interfaces from older platforms. For new projects, it is advisable to first evaluate the currently maintained MCP-Agent, AIConfig, and MCP-Eval tools, and to actually test the required endpoints.

Summary

The focus of the LastMile AI entry has shifted from being an independent commercial AI development platform to the current situation following the team’s integration into Meta, as well as the open-source tools such as MCP-Agent that are still available for use. Its practical value for developers lies in the creation of MCP agents, configuration management, and the evaluation of real-world interactions.

Before adopting this approach, it is necessary to evaluate separately the historical SaaS solutions, current open-source repositories, and cloud testing services. Existing customers should prioritize exporting data and ensuring service continuity, while new projects should start with minimal permissions, local testing, and reversible evaluation methods.

©️Copyright notice: Unless otherwise specified, all articles on this site are copyrighted bySharing of AI toolsAll content on this site is original; without permission, no individual, media outlet, website, or organization may reproduce, copy, or otherwise distribute it, nor may they create mirrors of it on servers that are not owned by this site. Otherwise, we reserve the right to take legal action against such parties in accordance with the law.

Tools similar to LastMile AI