freshcrate
Skin:/
Home > MCP Servers > mcp-use

mcp-use

The fullstack MCP framework to develop MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.

Why this rank:Strong adoptionRelease freshnessHealthy release cadence

Description

The fullstack MCP framework to develop MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.

README

About

mcp-use is the fullstack MCP framework to build MCP Apps for ChatGPT / Claude & MCP Servers for AI Agents.

  • Build with mcp-use SDK (ts | py): MCP Servers and MCP Apps
  • Preview on mcp-use MCP Inspector (online | oss): Test and debug your MCP Servers and Apps
  • Deploy on Manufact MCP Cloud: Connect your GitHub repo and have your MCP Server and App up and running in production with observability, metrics, logs, branch-deployments, and more

Documentation

Visit our docs or jump to a quickstart (TypeScript | Python)

Skills for Coding Agents

Using Claude Code, Codex, Cursor or other AI coding agents?

Install mcp-use skill for MCP Apps

Quickstart: MCP Servers and MCP Apps

TypeScript

Build your first MCP Server or MPC App:

npx create-mcp-use-app@latest

Or create a server manually:

import { MCPServer, text } from "mcp-use/server";
import { z } from "zod";

const server = new MCPServer({
  name: "my-server",
  version: "1.0.0",
});

server.tool({
  name: "get_weather",
  description: "Get weather for a city",
  schema: z.object({ city: z.string() }),
}, async ({ city }) => {
  return text(`Temperature: 72°F, Condition: sunny, City: ${city}`);
});

await server.listen(3000);
// Inspector at http://localhost:3000/inspector

→ Full TypeScript Server Documentation

MCP Apps

MCP Apps let you build interactive widgets that work across Claude, ChatGPT, and other MCP clients — write once, run everywhere.

Server: define a tool and point it to a widget:

import { MCPServer, widget } from "mcp-use/server";
import { z } from "zod";

const server = new MCPServer({
  name: "weather-app",
  version: "1.0.0",
});

server.tool({
  name: "get-weather",
  description: "Get weather for a city",
  schema: z.object({ city: z.string() }),
  widget: "weather-display", // references resources/weather-display/widget.tsx
}, async ({ city }) => {
  return widget({
    props: { city, temperature: 22, conditions: "Sunny" },
    message: `Weather in ${city}: Sunny, 22°C`,
  });
});

await server.listen(3000);

Widget: create a React component in resources/weather-display/widget.tsx:

import { useWidget, type WidgetMetadata } from "mcp-use/react";
import { z } from "zod";

const propSchema = z.object({
  city: z.string(),
  temperature: z.number(),
  conditions: z.string(),
});

export const widgetMetadata: WidgetMetadata = {
  description: "Display weather information",
  props: propSchema,
};

const WeatherDisplay: React.FC = () => {
  const { props, isPending, theme } = useWidget<z.infer<typeof propSchema>>();
  const isDark = theme === "dark";

  if (isPending) return <div>Loading...</div>;

  return (
    <div style={{
      background: isDark ? "#1a1a2e" : "#f0f4ff",
      borderRadius: 16, padding: 24,
    }}>
      <h2>{props.city}</h2>
      <p>{props.temperature}° — {props.conditions}</p>
    </div>
  );
};

export default WeatherDisplay;

Widgets in resources/ are auto-discovered — no manual registration needed.

Visit MCP Apps Documentation

Templates

Ready-to-use MCP Apps you can deploy in one click or remix as your own.

Preview Name Tools Demo URL Repo Deploy
Chart Builder Chart Builder create-chart Open URL mcp-use/mcp-chart-builder Deploy to mcp-use
Diagram Builder Diagram Builder create-diagram, edit-diagram Open URL mcp-use/mcp-diagram-builder Deploy to mcp-use
Slide Deck Slide Deck create-slides, edit-slide Open URL mcp-use/mcp-slide-deck Deploy to mcp-use
Maps Explorer Maps Explorer show-map, get-place-details, add-markers Open URL mcp-use/mcp-maps-explorer Deploy to mcp-use
Hugging Face Spaces Hugging Face Spaces search-spaces, show-space, trending-spaces Open URL mcp-use/mcp-huggingface-spaces Deploy to mcp-use
Recipe Finder Recipe Finder search-recipes, get-recipe, meal-plan, recipe-suggestion Open URL mcp-use/mcp-recipe-finder Deploy to mcp-use
Widget Gallery Widget Gallery show-react-widget, html-greeting, mcp-ui-poll, programmatic-counter, detect-client Open URL mcp-use/mcp-widget-gallery Deploy to mcp-use
Multi Server Hub Multi Server Hub hub-status, hub-config-example, audit-log Open URL mcp-use/mcp-multi-server-hub Deploy to mcp-use
File Manager File Manager open-vault, get-file, list-files Open URL mcp-use/mcp-file-manager Deploy to mcp-use
Progress Demo Progress Demo process-data, fetch-report, delete-dataset, search-external, failing-tool Open URL mcp-use/mcp-progress-demo Deploy to mcp-use
i18n Adaptive i18n Adaptive show-context, detect-caller Open URL mcp-use/mcp-i18n-adaptive Deploy to mcp-use
Media Mixer Media Mixer generate-image, generate-audio, generate-pdf, get-report, get-html-snippet, get-xml-config, get-stylesheet, get-script, get-data-array Open URL mcp-use/mcp-media-mixer Deploy to mcp-use
Resource Watcher Resource Watcher show-config, update-config, toggle-feature, list-roots Open URL mcp-use/mcp-resource-watcher Deploy to mcp-use

Python

pip install mcp-use
from typing import Annotated

from mcp.types import ToolAnnotations
from pydantic import Field

from mcp_use import MCPServer

server = MCPServer(name="Weather Server", version="1.0.0")

@server.tool(
    name="get_weather",
    description="Get current weather information for a location",
    annotations=ToolAnnotations(readOnlyHint=True, openWorldHint=True),
)
async def get_weather(
    city: Annotated[str, Field(description="City name")],
) -> str:
    return f"Temperature: 72°F, Condition: sunny, City: {city}"

# Start server with auto-inspector
server.run(transport="streamable-http", port=8000)
# 🎉 Inspector at http://localhost:8000/inspector

→ Full Python Server Documentation


Inspector

The mcp-use Inspector lets you test and debug your MCP servers interactively.

Auto-included when using server.listen():

server.listen(3000);
// Inspector at http://localhost:3000/inspector

Online when connecting to hosted MCP servers:

Visit https://inspector.mcp-use.com

Standalone: inspect any MCP server:

npx @mcp-use/inspector --url http://localhost:3000/mcp

Visit Inspector Documentation


Deploy

Deploy your MCP server to production:

npx @mcp-use/cli login
npx @mcp-use/cli deploy

Or connect your GitHub repo on manufact.com — production-ready with observability, metrics, logs, and branch-deployments.


Package Overview

This monorepo contains multiple packages for both Python and TypeScript:

Python Packages

Package Description Version
mcp-use Complete MCP server and MCP agent SDK PyPI

TypeScript Packages

Package Description Version
mcp-use Core framework for MCP servers, MCP apps, and MCP agents npm
@mcp-use/cli Build tool with hot reload and auto-inspector npm
@mcp-use/inspector Web-based previewer and debugger for MCP servers npm
create-mcp-use-app Project scaffolding tool npm

Also: MCP Agent & Client

mcp-use also provides a full MCP Agent and Client implementation.

Build an AI Agent

Python

pip install mcp-use langchain-openai
import asyncio
from langchain_openai import ChatOpenAI
from mcp_use import MCPAgent, MCPClient

async def main():
    config = {
        "mcpServers": {
            "filesystem": {
                "command": "npx",
                "args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
            }
        }
    }

    client = MCPClient.from_dict(config)
    llm = ChatOpenAI(model="gpt-4o")
    agent = MCPAgent(llm=llm, client=client)

    result = await agent.run("List all files in the directory")
    print(result)

asyncio.run(main())

→ Full Python Agent Documentation

TypeScript

npm install mcp-use @langchain/openai
import { ChatOpenAI } from "@langchain/openai";
import { MCPAgent, MCPClient } from "mcp-use";

async function main() {
  const config = {
    mcpServers: {
      filesystem: {
        command: "npx",
        args: ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"],
      },
    },
  };

  const client = MCPClient.fromDict(config);
  const llm = new ChatOpenAI({ modelName: "gpt-4o" });
  const agent = new MCPAgent({ llm, client });

  const result = await agent.run("List all files in the directory");
  console.log(result);
}

main();

→ Full TypeScript Agent Documentation

Use MCP Client

Python

import asyncio
from mcp_use import MCPClient

async def main():
    config = {
        "mcpServers": {
            "calculator": {
                "command": "npx",
                "args": ["-y", "@modelcontextprotocol/server-everything"]
            }
        }
    }

    client = MCPClient.from_dict(config)
    await client.create_all_sessions()

    session = client.get_session("calculator")
    result = await session.call_tool(name="add", arguments={"a": 5, "b": 3})

    print(f"Result: {result.content[0].text}")
    await client.close_all_sessions()

asyncio.run(main())

→ Python Client Documentation

TypeScript

import { MCPClient } from "mcp-use";

async function main() {
  const config = {
    mcpServers: {
      calculator: {
        command: "npx",
        args: ["-y", "@modelcontextprotocol/server-everything"],
      },
    },
  };

  const client = new MCPClient(config);
  await client.createAllSessions();

  const session = client.getSession("calculator");
  const result = await session.callTool("add", { a: 5, b: 3 });

  console.log(`Result: ${result.content[0].text}`);
  await client.closeAllSessions();
}

main();

→ TypeScript Client Documentation


Conformance to Model Context Protocol


Community & Support


Star History

Star History Chart


Contributors

Thanks to all our amazing contributors!

Core Contributors

  1. Pietro (@pietrozullo)
  2. Luigi (@pederzh)
  3. Enrico (@tonxxd)


Built with â¤ī¸ by Manufact team and the mcp-use community
San Francisco | ZÃŧrich

Release History

VersionChangesUrgencyDate
mcp-use@1.24.2-canary.7### Patch Changes - Updated dependencies [028cd3c] - @mcp-use/inspector@2.2.0-canary.7 - @mcp-use/cli@3.0.2-canary.7High4/20/2026
@mcp-use/inspector@2.2.0-canary.7### Patch Changes - 028cd3c: fix(inspector): read `MANUFACT_CHAT_URL` in the standalone server entrypoint The runtime hosted-chat URL injection was wired up in `cli.ts` (used by the published `mcp-inspect` bin and by Railway) but the same plumbing in `server.ts` (used by `pnpm start` / the dev server) was dropped during a merge. As a result, running the inspector via `node dist/server/server.js` with `MANUFACT_CHAT_URL` set did not inject `window.__MANUFACT_CHAT_URL__` into the served HTML. High4/20/2026
@mcp-use/cli@3.0.2-canary.7### Patch Changes - Updated dependencies [028cd3c] - @mcp-use/inspector@2.2.0-canary.7 - mcp-use@1.24.2-canary.7High4/20/2026
mcp-use@1.24.2-canary.6### Patch Changes - Updated dependencies [baa93e6] - @mcp-use/inspector@2.2.0-canary.6 - @mcp-use/cli@3.0.2-canary.6High4/20/2026
@mcp-use/inspector@2.2.0-canary.6### Minor Changes - baa93e6: fix(inspector): remove `@langchain/*` hard dependencies and drop `MCPAgent` usage Closes [mcp-use/mcp-use#1371](https://github.com/mcp-use/mcp-use/issues/1371). `@mcp-use/inspector` no longer depends on `@langchain/core`, `@langchain/openai`, `@langchain/anthropic`, or `@langchain/google-genai`. The chat, sampling, and props-generation paths now call the OpenAI, Anthropic, and Google REST APIs directly and run their own MCP tool-calling loop instead of going tHigh4/20/2026
@mcp-use/cli@3.0.2-canary.6### Patch Changes - Updated dependencies [baa93e6] - @mcp-use/inspector@2.2.0-canary.6 - mcp-use@1.24.2-canary.6High4/20/2026
mcp-use@1.24.2-canary.5### Patch Changes - bd58d95: fix(landing): add deeplink to manufact inspector - Updated dependencies [1b64075] - @mcp-use/inspector@2.2.0-canary.5 - @mcp-use/cli@3.0.2-canary.5High4/20/2026
@mcp-use/inspector@2.2.0-canary.5### Patch Changes - 1b64075: feat(inspector): configure hosted chat URL at runtime via `MANUFACT_CHAT_URL` The hosted chat endpoint (`chatApiUrl`) previously had to be baked into the client bundle at `vite build` time via `VITE_MANUFACT_CHAT_URL`. This prevented the same pre-built npm tarball from being configured per deploy (Railway, CDN, self-hosted) without a rebuild. The inspector server now reads `MANUFACT_CHAT_URL` at runtime and injects `window.__MANUFACT_CHAT_URL__` into the serveHigh4/20/2026
@mcp-use/cli@3.0.2-canary.5### Patch Changes - Updated dependencies [bd58d95] - Updated dependencies [1b64075] - mcp-use@1.24.2-canary.5 - @mcp-use/inspector@2.2.0-canary.5High4/20/2026
mcp-use@1.24.2-canary.4### Patch Changes - Updated dependencies [d9ac208] - @mcp-use/inspector@2.2.0-canary.4 - @mcp-use/cli@3.0.2-canary.4High4/20/2026
@mcp-use/inspector@2.2.0-canary.4### Minor Changes - d9ac208: feat(inspector): allow free tier chat on hosted inspector ### Patch Changes - mcp-use@1.24.2-canary.4High4/20/2026
@mcp-use/cli@3.0.2-canary.4### Patch Changes - Updated dependencies [d9ac208] - @mcp-use/inspector@2.2.0-canary.4 - mcp-use@1.24.2-canary.4High4/20/2026
mcp-use@1.24.2-canary.3### Patch Changes - aa86071: ThemeProvider: gate color-scheme on opt-in prop to fix transparent iframe backgrounds. Setting `color-scheme` to an explicit value ("dark"/"light") on the iframe document root causes browsers to paint an opaque canvas behind the iframe when the widget and host documents use different schemes, making `background-color: transparent` ineffective. `McpUseProvider` now accepts a `colorScheme?: boolean` prop (default `false`). When `false`, `ThemeProvider` clears anHigh4/19/2026
@mcp-use/inspector@2.2.0-canary.3### Patch Changes - Updated dependencies [aa86071] - mcp-use@1.24.2-canary.3High4/19/2026
@mcp-use/cli@3.0.2-canary.3### Patch Changes - Updated dependencies [aa86071] - mcp-use@1.24.2-canary.3 - @mcp-use/inspector@2.2.0-canary.3High4/19/2026
mcp-use@1.24.2-canary.2### Patch Changes - Updated dependencies [ee5abf8] - @mcp-use/inspector@2.2.0-canary.2 - @mcp-use/cli@3.0.2-canary.2High4/17/2026
@mcp-use/inspector@2.2.0-canary.2### Minor Changes - ee5abf8: Added "Copy Chat" and "Export Chat" buttons to the MCP Inspector chat header. Both actions include tool calls inline in the order they occurred. Copy writes markdown to the clipboard; Export downloads as JSON or Markdown. ### Patch Changes - mcp-use@1.24.2-canary.2High4/17/2026
@mcp-use/cli@3.0.2-canary.2### Patch Changes - Updated dependencies [ee5abf8] - @mcp-use/inspector@2.2.0-canary.2 - mcp-use@1.24.2-canary.2High4/17/2026
mcp-use@1.24.2-canary.1### Patch Changes - Updated dependencies [8f8a8e0] - @mcp-use/cli@3.0.2-canary.1 - @mcp-use/inspector@2.1.1-canary.1High4/17/2026
@mcp-use/inspector@2.1.1-canary.1### Patch Changes - mcp-use@1.24.2-canary.1High4/17/2026
@mcp-use/cli@3.0.2-canary.1### Patch Changes - 8f8a8e0: Deploy: HTTP 401 is treated as an invalid or expired API key for the current backend—short re-authenticate prompt instead of the GitHub App "not connected" flow. Runs `testAuth` after org resolution (including when org is read from disk). GitHub connection checks and install polling recover via the same re-auth path on 401. - mcp-use@1.24.2-canary.1 - @mcp-use/inspector@2.1.1-canary.1High4/17/2026
mcp-use@1.24.2-canary.0### Patch Changes - Updated dependencies [5f0c888] - @mcp-use/cli@3.0.2-canary.0 - @mcp-use/inspector@2.1.1-canary.0High4/17/2026
@mcp-use/inspector@2.1.1-canary.0### Patch Changes - mcp-use@1.24.2-canary.0High4/17/2026
@mcp-use/cli@3.0.2-canary.0### Patch Changes - 5f0c888: Deploy: `git init` / `commit` / `push` no longer fail silently—mutating git commands throw with stderr, the first branch is normalized to `main` before push, and `git rev-parse HEAD` verifies a commit exists. `mcp-use deploy` catches these errors and prints hints for missing `user.name`/`user.email` and for rejected/non-fast-forward pushes. Commit messages are shell-quoted. - mcp-use@1.24.2-canary.0 - @mcp-use/inspector@2.1.1-canary.0High4/17/2026
mcp-use@1.24.1-canary.3### Patch Changes - Updated dependencies [d85fb4f] - @mcp-use/inspector@2.1.0-canary.3 - @mcp-use/cli@3.0.1-canary.3High4/16/2026
@mcp-use/inspector@2.1.0-canary.3### Patch Changes - d85fb4f: Add theme toggle button to MCP Apps debug controls toolbar - mcp-use@1.24.1-canary.3High4/16/2026
@mcp-use/cli@3.0.1-canary.3### Patch Changes - Updated dependencies [d85fb4f] - @mcp-use/inspector@2.1.0-canary.3 - mcp-use@1.24.1-canary.3High4/16/2026
mcp-use@1.24.1-canary.2### Patch Changes - Updated dependencies [744db4d] - @mcp-use/cli@3.0.1-canary.2 - @mcp-use/inspector@2.1.0-canary.2High4/16/2026
@mcp-use/inspector@2.1.0-canary.2### Patch Changes - mcp-use@1.24.1-canary.2High4/16/2026
@mcp-use/cli@3.0.1-canary.2### Patch Changes - 744db4d: refactor(cli): enhance deploy command with GitHub authorization handling - mcp-use@1.24.1-canary.2 - @mcp-use/inspector@2.1.0-canary.2High4/16/2026
mcp-use@1.24.1-canary.1### Patch Changes - 9fed740: Fix inspector "Protected resource does not match" error when switching from Via Proxy to Direct connection. The `window.fetch` interceptor installed by `BrowserOAuthClientProvider` is now correctly restored when `useMcp` unmounts, preventing the stale proxy interceptor from interfering with subsequent direct OAuth flows. - @mcp-use/cli@3.0.1-canary.1 - @mcp-use/inspector@2.1.0-canary.1High4/16/2026
@mcp-use/inspector@2.1.0-canary.1### Patch Changes - Updated dependencies [9fed740] - mcp-use@1.24.1-canary.1High4/16/2026
@mcp-use/cli@3.0.1-canary.1### Patch Changes - Updated dependencies [9fed740] - mcp-use@1.24.1-canary.1 - @mcp-use/inspector@2.1.0-canary.1High4/16/2026
mcp-use@1.24.1-canary.0### Patch Changes - Updated dependencies [27bd31c] - @mcp-use/inspector@2.1.0-canary.0 - @mcp-use/cli@3.0.1-canary.0High4/16/2026
@mcp-use/inspector@2.1.0-canary.0### Minor Changes - 27bd31c: Inspector navbar UX improvements - Chat tab moved to first position, always shows label even when collapsed, with visual separator - Active tab label stays visible when navbar is collapsed (new `alwaysExpanded` prop on TabsTrigger) - Deploy button added linking to manufact.com/signup with inspector referrer - Tunnel button repositioned between Add to Client and Deploy, restyled with violet theme, now visible in mobile layout - Theme toggle, command paletteHigh4/16/2026
@mcp-use/cli@3.0.1-canary.0### Patch Changes - Updated dependencies [27bd31c] - @mcp-use/inspector@2.1.0-canary.0 - mcp-use@1.24.1-canary.0High4/16/2026
mcp-use@1.24.0-canary.6### Patch Changes - Updated dependencies [c47d149] - @mcp-use/inspector@2.0.0-canary.6 - @mcp-use/cli@3.0.0-canary.6High4/15/2026
@mcp-use/inspector@2.0.0-canary.6### Minor Changes - c47d149: Inspector navbar UX improvements - Chat tab moved to first position, always shows label even when collapsed, with visual separator - Active tab label stays visible when navbar is collapsed (new `alwaysExpanded` prop on TabsTrigger) - Deploy button added linking to manufact.com/signup with inspector referrer - Tunnel button repositioned between Add to Client and Deploy, restyled with violet theme, now visible in mobile layout - Theme toggle, command paletteHigh4/15/2026
@mcp-use/cli@3.0.0-canary.6### Patch Changes - Updated dependencies [c47d149] - @mcp-use/inspector@2.0.0-canary.6 - mcp-use@1.24.0-canary.6High4/15/2026
mcp-use@1.24.0-canary.5### Patch Changes - bba147b: Fix deployment flow through cli and github connection - @mcp-use/cli@3.0.0-canary.5 - @mcp-use/inspector@2.0.0-canary.5High4/15/2026
@mcp-use/inspector@2.0.0-canary.5### Patch Changes - Updated dependencies [bba147b] - mcp-use@1.24.0-canary.5High4/15/2026
@mcp-use/cli@3.0.0-canary.5### Patch Changes - Updated dependencies [bba147b] - mcp-use@1.24.0-canary.5 - @mcp-use/inspector@2.0.0-canary.5High4/15/2026
mcp-use@1.24.0-canary.4### Minor Changes - 1718d68: Fix OAuth callback URL for inspector mounted at a sub-path **mcp-use:** Add `defaultCallbackUrl` prop to `McpClientProvider` so apps mounted at a sub-path (e.g. `/inspector`) can declare the correct OAuth redirect URL once at the provider level instead of passing it to every `addServer` call. **inspector:** Pass `defaultCallbackUrl` pointing to `/inspector/oauth/callback`, which is where the React Router (with `basename="/inspector"`) mounts the `OAuthCallbackMedium4/14/2026
@mcp-use/inspector@2.0.0-canary.4### Patch Changes - 1718d68: Fix OAuth callback URL for inspector mounted at a sub-path **mcp-use:** Add `defaultCallbackUrl` prop to `McpClientProvider` so apps mounted at a sub-path (e.g. `/inspector`) can declare the correct OAuth redirect URL once at the provider level instead of passing it to every `addServer` call. **inspector:** Pass `defaultCallbackUrl` pointing to `/inspector/oauth/callback`, which is where the React Router (with `basename="/inspector"`) mounts the `OAuthCallbackMedium4/14/2026
@mcp-use/cli@3.0.0-canary.4### Major Changes - 2bfcf48: cli: refactor cli to use new manufact apis ### Patch Changes - Updated dependencies [1718d68] - mcp-use@1.24.0-canary.4 - @mcp-use/inspector@2.0.0-canary.4Medium4/14/2026
mcp-use@1.24.0-canary.3### Patch Changes - c51a656: chore(mcp-use): switch several logers to debug from info - c51a656: fix(mcp-use): correct handling of paths on windows - Updated dependencies [c51a656] - Updated dependencies [c51a656] - Updated dependencies [c51a656] - @mcp-use/cli@3.0.0-canary.3 - @mcp-use/inspector@2.0.0-canary.3Medium4/14/2026
@mcp-use/inspector@2.0.0-canary.3### Patch Changes - c51a656: feat(inspector): persist tabs on refresh - Updated dependencies [c51a656] - Updated dependencies [c51a656] - mcp-use@1.24.0-canary.3Medium4/14/2026
@mcp-use/cli@3.0.0-canary.3### Major Changes - c51a656: Moved to device flow authentication. ### Patch Changes - c51a656: fix(mcp-use): correct handling of paths on windows - Updated dependencies [c51a656] - Updated dependencies [c51a656] - Updated dependencies [c51a656] - mcp-use@1.24.0-canary.3 - @mcp-use/inspector@2.0.0-canary.3Medium4/14/2026
mcp-use@1.24.0-canary.2### Patch Changes - 9478920: Fix Google provider rejecting tool schemas with `propertyNames` keyword. `z.record()` causes `@langchain/core` to emit a `propertyNames` field in the JSON Schema output for constrained or enum key types, which Google's Generative AI API rejects. Switching to `z.object({}).catchall()` produces identical runtime behavior while serializing cleanly without `propertyNames`. - Updated dependencies [b0e2492] - @mcp-use/inspector@2.0.0-canary.2 - @mcp-use/cli@2.21.5Medium4/13/2026
@mcp-use/inspector@2.0.0-canary.2### Patch Changes - b0e2492: Fix thinking indicator persisting after assistant stream completes - Updated dependencies [9478920] - mcp-use@1.24.0-canary.2Medium4/13/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoMedium3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026
python-v1.7.0## What's Changed ### Features * feat(python): add mcp_logs_only option to hide non-MCP HTTP access logs by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1164 * feat(python): auto-retry next available port when default is in use by @pietrozullo in https://github.com/mcp-use/mcp-use/pull/1163 * feat(python): add create-mcp-use CLI with rich UI and dependency install by @renvins in https://github.com/mcp-use/mcp-use/pull/1097 * feat(python): add icons parameter to MCPServer constructoLow3/17/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

claude-code-safety-netđŸ›Ąī¸ Enhance code safety with Claude Code Safety Net, a tool designed to identify and mitigate risks in your codebase effectively.main@2026-06-07
lobehubThe ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effov2.2.2
inspectorTest, Debug, and Evaluate MCP servers, ChatGPT apps, and MCP Apps (ext-apps)v2.9.4
claude-app-serverProvide a JSON-RPC 2.0 server that enables Claude Code access via stdio or WebSocket without requiring an API key or extra authentication.main@2026-06-02
MediaWiki-MCP-ServerModel Context Protocol (MCP) Server to connect your AI with any MediaWikiv0.10.0

More in MCP Servers

PlanExeCreate a plan from a description in minutes
agentroveYour own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.
node9-proxyThe Execution Security Layer for the Agentic Era. Providing deterministic "Sudo" governance and audit logs for autonomous AI agents.