Skip to content

Commit a28483e

Browse files
committed
renames renaming references to mcp project name
1 parent cf38f38 commit a28483e

File tree

19 files changed

+135
-157
lines changed

19 files changed

+135
-157
lines changed

examples/clients/simple-chatbot/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers = [
1717
dependencies = [
1818
"python-dotenv>=1.0.0",
1919
"requests>=2.31.0",
20-
"mcp>=1.0.0",
20+
"mcpengine>=1.0.0",
2121
"uvicorn>=0.32.1"
2222
]
2323

examples/servers/simple-prompt/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ Using the MCP client, you can retrieve the prompt like this using the STDIO tran
2525

2626
```python
2727
import asyncio
28-
from mcp.client.session import ClientSession
29-
from mcp.client.stdio import StdioServerParameters, stdio_client
28+
from mcpengine.client.session import ClientSession
29+
from mcpengine.client.stdio import StdioServerParameters, stdio_client
3030

3131

3232
async def main():

examples/servers/simple-prompt/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3.10",
2020
]
21-
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcp"]
21+
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcpengine"]
2222

2323
[project.scripts]
2424
mcp-simple-prompt = "mcp_simple_prompt.server:main"

examples/servers/simple-resource/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Using the MCP client, you can retrieve resources like this using the STDIO trans
2222

2323
```python
2424
import asyncio
25-
from mcp.types import AnyUrl
26-
from mcp.client.session import ClientSession
27-
from mcp.client.stdio import StdioServerParameters, stdio_client
25+
from mcpengine.types import AnyUrl
26+
from mcpengine.client.session import ClientSession
27+
from mcpengine.client.stdio import StdioServerParameters, stdio_client
2828

2929

3030
async def main():

examples/servers/simple-resource/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3.10",
2020
]
21-
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcp"]
21+
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcpengine"]
2222

2323
[project.scripts]
2424
mcp-simple-resource = "mcp_simple_resource.server:main"

examples/servers/simple-tool/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Using the MCP client, you can use the tool like this using the STDIO transport:
2323

2424
```python
2525
import asyncio
26-
from mcp.client.session import ClientSession
27-
from mcp.client.stdio import StdioServerParameters, stdio_client
26+
from mcpengine.client.session import ClientSession
27+
from mcpengine.client.stdio import StdioServerParameters, stdio_client
2828

2929

3030
async def main():

examples/servers/simple-tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3",
1919
"Programming Language :: Python :: 3.10",
2020
]
21-
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcp"]
21+
dependencies = ["anyio>=4.5", "click>=8.1.0", "httpx>=0.27", "mcpengine"]
2222

2323
[project.scripts]
2424
mcp-simple-tool = "mcp_simple_tool.server:main"

mkdocs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ site_name: MCP Server
22
site_description: MCP Server
33
strict: true
44

5-
repo_name: modelcontextprotocol/python-sdk
6-
repo_url: https://github.com/modelcontextprotocol/python-sdk
5+
repo_name: featureform/mcp-engine
6+
repo_url: https://github.com/featureform/mcp-engine
77
edit_uri: edit/main/docs/
8-
site_url: https://modelcontextprotocol.github.io/python-sdk
8+
site_url: https://www.featureform.com/
99

1010
# TODO(Marcelo): Add Anthropic copyright?
1111
# copyright: © Model Context Protocol 2025 to present
@@ -95,7 +95,7 @@ markdown_extensions:
9595
- sane_lists # this means you can start a list from any number
9696

9797
watch:
98-
- src/mcp
98+
- src/mcpengine
9999

100100
plugins:
101101
- search
@@ -104,7 +104,7 @@ plugins:
104104
- mkdocstrings:
105105
handlers:
106106
python:
107-
paths: [src/mcp]
107+
paths: [src/mcpengine]
108108
options:
109109
relative_crossrefs: true
110110
members_order: source

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ docs = [
6262
"mkdocs-material[imaging]>=9.5.45",
6363
"mkdocstrings-python>=1.12.2",
6464
]
65+
cli = [
66+
"typer>=0.12.4",
67+
"python-dotenv>=1.0.0",
68+
]
6569

6670

6771
[build-system]

src/mcpengine/cli/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def _import_server(file: Path, server_object: str | None = None):
186186
def version() -> None:
187187
"""Show the MCPEngine version."""
188188
try:
189-
version = importlib.metadata.version("mcp")
189+
version = importlib.metadata.version("mcpengine")
190190
print(f"MCPEngine version {version}")
191191
except importlib.metadata.PackageNotFoundError:
192192
print("MCPEngine version unknown (package not installed)")

0 commit comments

Comments
 (0)