fastmcp 0.4.1__py3-none-any.whl → 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,587 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: fastmcp
3
- Version: 0.4.1
4
- Summary: A more ergonomic interface for MCP servers
5
- Author: Jeremiah Lowin
6
- License: MIT
7
- Requires-Python: >=3.10
8
- Requires-Dist: httpx>=0.26.0
9
- Requires-Dist: mcp<2.0.0,>=1.0.0
10
- Requires-Dist: pydantic-settings>=2.6.1
11
- Requires-Dist: pydantic<3.0.0,>=2.5.3
12
- Requires-Dist: python-dotenv>=1.0.1
13
- Requires-Dist: typer>=0.9.0
14
- Provides-Extra: dev
15
- Requires-Dist: copychat>=0.5.2; extra == 'dev'
16
- Requires-Dist: ipython>=8.12.3; extra == 'dev'
17
- Requires-Dist: pdbpp>=0.10.3; extra == 'dev'
18
- Requires-Dist: pre-commit; extra == 'dev'
19
- Requires-Dist: pyright>=1.1.389; extra == 'dev'
20
- Requires-Dist: pytest-asyncio>=0.23.5; extra == 'dev'
21
- Requires-Dist: pytest-flakefinder; extra == 'dev'
22
- Requires-Dist: pytest-xdist>=3.6.1; extra == 'dev'
23
- Requires-Dist: pytest>=8.3.3; extra == 'dev'
24
- Requires-Dist: ruff; extra == 'dev'
25
- Provides-Extra: tests
26
- Requires-Dist: pre-commit; extra == 'tests'
27
- Requires-Dist: pyright>=1.1.389; extra == 'tests'
28
- Requires-Dist: pytest-asyncio>=0.23.5; extra == 'tests'
29
- Requires-Dist: pytest-flakefinder; extra == 'tests'
30
- Requires-Dist: pytest-xdist>=3.6.1; extra == 'tests'
31
- Requires-Dist: pytest>=8.3.3; extra == 'tests'
32
- Requires-Dist: ruff; extra == 'tests'
33
- Description-Content-Type: text/markdown
34
-
35
- <!-- omit in toc -->
36
- # FastMCP 🚀
37
-
38
- <div align="center">
39
-
40
- <strong>The fast, Pythonic way to build MCP servers.</strong>
41
-
42
- [![PyPI - Version](https://img.shields.io/pypi/v/fastmcp.svg)](https://pypi.org/project/fastmcp)
43
- [![Tests](https://github.com/jlowin/fastmcp/actions/workflows/run-tests.yml/badge.svg)](https://github.com/jlowin/fastmcp/actions/workflows/run-tests.yml)
44
- [![License](https://img.shields.io/github/license/jlowin/fastmcp.svg)](https://github.com/jlowin/fastmcp/blob/main/LICENSE)
45
-
46
-
47
- </div>
48
-
49
- [Model Context Protocol (MCP)](https://modelcontextprotocol.io) servers are a new, standardized way to provide context and tools to your LLMs, and FastMCP makes building MCP servers simple and intuitive. Create tools, expose resources, and define prompts with clean, Pythonic code:
50
-
51
- ```python
52
- # demo.py
53
-
54
- from fastmcp import FastMCP
55
-
56
-
57
- mcp = FastMCP("Demo 🚀")
58
-
59
-
60
- @mcp.tool()
61
- def add(a: int, b: int) -> int:
62
- """Add two numbers"""
63
- return a + b
64
- ```
65
-
66
- That's it! Give Claude access to the server by running:
67
-
68
- ```bash
69
- fastmcp install demo.py
70
- ```
71
-
72
- FastMCP handles all the complex protocol details and server management, so you can focus on building great tools. It's designed to be high-level and Pythonic - in most cases, decorating a function is all you need.
73
-
74
-
75
- ### Key features:
76
- * **Fast**: High-level interface means less code and faster development
77
- * **Simple**: Build MCP servers with minimal boilerplate
78
- * **Pythonic**: Feels natural to Python developers
79
- * **Complete***: FastMCP aims to provide a full implementation of the core MCP specification
80
-
81
- (\*emphasis on *aims*)
82
-
83
- 🚨 🚧 🏗️ *FastMCP is under active development, as is the MCP specification itself. Core features are working but some advanced capabilities are still in progress.*
84
-
85
-
86
- <!-- omit in toc -->
87
- ## Table of Contents
88
-
89
- - [Installation](#installation)
90
- - [Quickstart](#quickstart)
91
- - [What is MCP?](#what-is-mcp)
92
- - [Core Concepts](#core-concepts)
93
- - [Server](#server)
94
- - [Resources](#resources)
95
- - [Tools](#tools)
96
- - [Prompts](#prompts)
97
- - [Images](#images)
98
- - [Context](#context)
99
- - [Running Your Server](#running-your-server)
100
- - [Development Mode (Recommended for Building \& Testing)](#development-mode-recommended-for-building--testing)
101
- - [Claude Desktop Integration (For Regular Use)](#claude-desktop-integration-for-regular-use)
102
- - [Direct Execution (For Advanced Use Cases)](#direct-execution-for-advanced-use-cases)
103
- - [Server Object Names](#server-object-names)
104
- - [Examples](#examples)
105
- - [Echo Server](#echo-server)
106
- - [SQLite Explorer](#sqlite-explorer)
107
- - [Contributing](#contributing)
108
- - [Prerequisites](#prerequisites)
109
- - [Installation](#installation-1)
110
- - [Testing](#testing)
111
- - [Formatting](#formatting)
112
- - [Opening a Pull Request](#opening-a-pull-request)
113
-
114
- ## Installation
115
-
116
- We strongly recommend installing FastMCP with [uv](https://docs.astral.sh/uv/), as it is required for deploying servers:
117
-
118
- ```bash
119
- uv pip install fastmcp
120
- ```
121
-
122
- Note: on macOS, uv may need to be installed with Homebrew (`brew install uv`) in order to make it available to the Claude Desktop app.
123
-
124
- Alternatively, to use the SDK without deploying, you may use pip:
125
-
126
- ```bash
127
- pip install fastmcp
128
- ```
129
-
130
- ## Quickstart
131
-
132
- Let's create a simple MCP server that exposes a calculator tool and some data:
133
-
134
- ```python
135
- # server.py
136
-
137
- from fastmcp import FastMCP
138
-
139
-
140
- # Create an MCP server
141
- mcp = FastMCP("Demo")
142
-
143
-
144
- # Add an addition tool
145
- @mcp.tool()
146
- def add(a: int, b: int) -> int:
147
- """Add two numbers"""
148
- return a + b
149
-
150
-
151
- # Add a dynamic greeting resource
152
- @mcp.resource("greeting://{name}")
153
- def get_greeting(name: str) -> str:
154
- """Get a personalized greeting"""
155
- return f"Hello, {name}!"
156
- ```
157
-
158
- You can install this server in [Claude Desktop](https://claude.ai/download) and interact with it right away by running:
159
- ```bash
160
- fastmcp install server.py
161
- ```
162
-
163
- Alternatively, you can test it with the MCP Inspector:
164
- ```bash
165
- fastmcp dev server.py
166
- ```
167
-
168
- ![MCP Inspector](/docs/assets/demo-inspector.png)
169
-
170
- ## What is MCP?
171
-
172
- The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) lets you build servers that expose data and functionality to LLM applications in a secure, standardized way. Think of it like a web API, but specifically designed for LLM interactions. MCP servers can:
173
-
174
- - Expose data through **Resources** (think of these sort of like GET endpoints; they are used to load information into the LLM's context)
175
- - Provide functionality through **Tools** (sort of like POST endpoints; they are used to execute code or otherwise produce a side effect)
176
- - Define interaction patterns through **Prompts** (reusable templates for LLM interactions)
177
- - And more!
178
-
179
- There is a low-level [Python SDK](https://github.com/modelcontextprotocol/python-sdk) available for implementing the protocol directly, but FastMCP aims to make that easier by providing a high-level, Pythonic interface.
180
-
181
- ## Core Concepts
182
-
183
-
184
- ### Server
185
-
186
- The FastMCP server is your core interface to the MCP protocol. It handles connection management, protocol compliance, and message routing:
187
-
188
- ```python
189
- from fastmcp import FastMCP
190
-
191
- # Create a named server
192
- mcp = FastMCP("My App")
193
-
194
- # Specify dependencies for deployment and development
195
- mcp = FastMCP("My App", dependencies=["pandas", "numpy"])
196
- ```
197
-
198
- ### Resources
199
-
200
- Resources are how you expose data to LLMs. They're similar to GET endpoints in a REST API - they provide data but shouldn't perform significant computation or have side effects. Some examples:
201
-
202
- - File contents
203
- - Database schemas
204
- - API responses
205
- - System information
206
-
207
- Resources can be static:
208
- ```python
209
- @mcp.resource("config://app")
210
- def get_config() -> str:
211
- """Static configuration data"""
212
- return "App configuration here"
213
- ```
214
-
215
- Or dynamic with parameters (FastMCP automatically handles these as MCP templates):
216
- ```python
217
- @mcp.resource("users://{user_id}/profile")
218
- def get_user_profile(user_id: str) -> str:
219
- """Dynamic user data"""
220
- return f"Profile data for user {user_id}"
221
- ```
222
-
223
- ### Tools
224
-
225
- Tools let LLMs take actions through your server. Unlike resources, tools are expected to perform computation and have side effects. They're similar to POST endpoints in a REST API.
226
-
227
- Simple calculation example:
228
- ```python
229
- @mcp.tool()
230
- def calculate_bmi(weight_kg: float, height_m: float) -> float:
231
- """Calculate BMI given weight in kg and height in meters"""
232
- return weight_kg / (height_m ** 2)
233
- ```
234
-
235
- HTTP request example:
236
- ```python
237
- import httpx
238
-
239
- @mcp.tool()
240
- async def fetch_weather(city: str) -> str:
241
- """Fetch current weather for a city"""
242
- async with httpx.AsyncClient() as client:
243
- response = await client.get(
244
- f"https://api.weather.com/{city}"
245
- )
246
- return response.text
247
- ```
248
-
249
- Complex input handling example:
250
- ```python
251
- from pydantic import BaseModel, Field
252
- from typing import Annotated
253
-
254
- class ShrimpTank(BaseModel):
255
- class Shrimp(BaseModel):
256
- name: Annotated[str, Field(max_length=10)]
257
-
258
- shrimp: list[Shrimp]
259
-
260
- @mcp.tool()
261
- def name_shrimp(
262
- tank: ShrimpTank,
263
- # You can use pydantic Field in function signatures for validation.
264
- extra_names: Annotated[list[str], Field(max_length=10)],
265
- ) -> list[str]:
266
- """List all shrimp names in the tank"""
267
- return [shrimp.name for shrimp in tank.shrimp] + extra_names
268
- ```
269
-
270
- ### Prompts
271
-
272
- Prompts are reusable templates that help LLMs interact with your server effectively. They're like "best practices" encoded into your server. A prompt can be as simple as a string:
273
-
274
- ```python
275
- @mcp.prompt()
276
- def review_code(code: str) -> str:
277
- return f"Please review this code:\n\n{code}"
278
- ```
279
-
280
- Or a more structured sequence of messages:
281
- ```python
282
- from fastmcp.prompts.base import UserMessage, AssistantMessage
283
-
284
- @mcp.prompt()
285
- def debug_error(error: str) -> list[Message]:
286
- return [
287
- UserMessage("I'm seeing this error:"),
288
- UserMessage(error),
289
- AssistantMessage("I'll help debug that. What have you tried so far?")
290
- ]
291
- ```
292
-
293
-
294
- ### Images
295
-
296
- FastMCP provides an `Image` class that automatically handles image data in your server:
297
-
298
- ```python
299
- from fastmcp import FastMCP, Image
300
- from PIL import Image as PILImage
301
-
302
- @mcp.tool()
303
- def create_thumbnail(image_path: str) -> Image:
304
- """Create a thumbnail from an image"""
305
- img = PILImage.open(image_path)
306
- img.thumbnail((100, 100))
307
-
308
- # FastMCP automatically handles conversion and MIME types
309
- return Image(data=img.tobytes(), format="png")
310
-
311
- @mcp.tool()
312
- def load_image(path: str) -> Image:
313
- """Load an image from disk"""
314
- # FastMCP handles reading and format detection
315
- return Image(path=path)
316
- ```
317
-
318
- Images can be used as the result of both tools and resources.
319
-
320
- ### Context
321
-
322
- The Context object gives your tools and resources access to MCP capabilities. To use it, add a parameter annotated with `fastmcp.Context`:
323
-
324
- ```python
325
- from fastmcp import FastMCP, Context
326
-
327
- @mcp.tool()
328
- async def long_task(files: list[str], ctx: Context) -> str:
329
- """Process multiple files with progress tracking"""
330
- for i, file in enumerate(files):
331
- ctx.info(f"Processing {file}")
332
- await ctx.report_progress(i, len(files))
333
-
334
- # Read another resource if needed
335
- data = await ctx.read_resource(f"file://{file}")
336
-
337
- return "Processing complete"
338
- ```
339
-
340
- The Context object provides:
341
- - Progress reporting through `report_progress()`
342
- - Logging via `debug()`, `info()`, `warning()`, and `error()`
343
- - Resource access through `read_resource()`
344
- - Request metadata via `request_id` and `client_id`
345
-
346
- ## Running Your Server
347
-
348
- There are three main ways to use your FastMCP server, each suited for different stages of development:
349
-
350
- ### Development Mode (Recommended for Building & Testing)
351
-
352
- The fastest way to test and debug your server is with the MCP Inspector:
353
-
354
- ```bash
355
- fastmcp dev server.py
356
- ```
357
-
358
- This launches a web interface where you can:
359
- - Test your tools and resources interactively
360
- - See detailed logs and error messages
361
- - Monitor server performance
362
- - Set environment variables for testing
363
-
364
- During development, you can:
365
- - Add dependencies with `--with`:
366
- ```bash
367
- fastmcp dev server.py --with pandas --with numpy
368
- ```
369
- - Mount your local code for live updates:
370
- ```bash
371
- fastmcp dev server.py --with-editable .
372
- ```
373
-
374
- ### Claude Desktop Integration (For Regular Use)
375
-
376
- Once your server is ready, install it in Claude Desktop to use it with Claude:
377
-
378
- ```bash
379
- fastmcp install server.py
380
- ```
381
-
382
- Your server will run in an isolated environment with:
383
- - Automatic installation of dependencies specified in your FastMCP instance:
384
- ```python
385
- mcp = FastMCP("My App", dependencies=["pandas", "numpy"])
386
- ```
387
- - Custom naming via `--name`:
388
- ```bash
389
- fastmcp install server.py --name "My Analytics Server"
390
- ```
391
- - Environment variable management:
392
- ```bash
393
- # Set variables individually
394
- fastmcp install server.py -e API_KEY=abc123 -e DB_URL=postgres://...
395
-
396
- # Or load from a .env file
397
- fastmcp install server.py -f .env
398
- ```
399
-
400
- ### Direct Execution (For Advanced Use Cases)
401
-
402
- For advanced scenarios like custom deployments or running without Claude, you can execute your server directly:
403
-
404
- ```python
405
- from fastmcp import FastMCP
406
-
407
- mcp = FastMCP("My App")
408
-
409
- if __name__ == "__main__":
410
- mcp.run()
411
- ```
412
-
413
- Run it with:
414
- ```bash
415
- # Using the FastMCP CLI
416
- fastmcp run server.py
417
-
418
- # Or with Python/uv directly
419
- python server.py
420
- uv run python server.py
421
- ```
422
-
423
-
424
- Note: When running directly, you are responsible for ensuring all dependencies are available in your environment. Any dependencies specified on the FastMCP instance are ignored.
425
-
426
- Choose this method when you need:
427
- - Custom deployment configurations
428
- - Integration with other services
429
- - Direct control over the server lifecycle
430
-
431
- ### Server Object Names
432
-
433
- All FastMCP commands will look for a server object called `mcp`, `app`, or `server` in your file. If you have a different object name or multiple servers in one file, use the syntax `server.py:my_server`:
434
-
435
- ```bash
436
- # Using a standard name
437
- fastmcp run server.py
438
-
439
- # Using a custom name
440
- fastmcp run server.py:my_custom_server
441
- ```
442
-
443
- ## Examples
444
-
445
- Here are a few examples of FastMCP servers. For more, see the `examples/` directory.
446
-
447
- ### Echo Server
448
- A simple server demonstrating resources, tools, and prompts:
449
-
450
- ```python
451
- from fastmcp import FastMCP
452
-
453
- mcp = FastMCP("Echo")
454
-
455
- @mcp.resource("echo://{message}")
456
- def echo_resource(message: str) -> str:
457
- """Echo a message as a resource"""
458
- return f"Resource echo: {message}"
459
-
460
- @mcp.tool()
461
- def echo_tool(message: str) -> str:
462
- """Echo a message as a tool"""
463
- return f"Tool echo: {message}"
464
-
465
- @mcp.prompt()
466
- def echo_prompt(message: str) -> str:
467
- """Create an echo prompt"""
468
- return f"Please process this message: {message}"
469
- ```
470
-
471
- ### SQLite Explorer
472
- A more complex example showing database integration:
473
-
474
- ```python
475
- from fastmcp import FastMCP
476
- import sqlite3
477
-
478
- mcp = FastMCP("SQLite Explorer")
479
-
480
- @mcp.resource("schema://main")
481
- def get_schema() -> str:
482
- """Provide the database schema as a resource"""
483
- conn = sqlite3.connect("database.db")
484
- schema = conn.execute(
485
- "SELECT sql FROM sqlite_master WHERE type='table'"
486
- ).fetchall()
487
- return "\n".join(sql[0] for sql in schema if sql[0])
488
-
489
- @mcp.tool()
490
- def query_data(sql: str) -> str:
491
- """Execute SQL queries safely"""
492
- conn = sqlite3.connect("database.db")
493
- try:
494
- result = conn.execute(sql).fetchall()
495
- return "\n".join(str(row) for row in result)
496
- except Exception as e:
497
- return f"Error: {str(e)}"
498
-
499
- @mcp.prompt()
500
- def analyze_table(table: str) -> str:
501
- """Create a prompt template for analyzing tables"""
502
- return f"""Please analyze this database table:
503
- Table: {table}
504
- Schema:
505
- {get_schema()}
506
-
507
- What insights can you provide about the structure and relationships?"""
508
- ```
509
-
510
- ## Contributing
511
-
512
- <details>
513
-
514
- <summary><h3>Open Developer Guide</h3></summary>
515
-
516
- ### Prerequisites
517
-
518
- FastMCP requires Python 3.10+ and [uv](https://docs.astral.sh/uv/).
519
-
520
- ### Installation
521
-
522
- For development, we recommend installing FastMCP with development dependencies, which includes various utilities the maintainers find useful.
523
-
524
- ```bash
525
- git clone https://github.com/jlowin/fastmcp.git
526
- cd fastmcp
527
- uv sync --frozen --extra dev
528
- ```
529
-
530
- For running tests only (e.g., in CI), you only need the testing dependencies:
531
-
532
- ```bash
533
- uv sync --frozen --extra tests
534
- ```
535
-
536
- ### Testing
537
-
538
- Please make sure to test any new functionality. Your tests should be simple and atomic and anticipate change rather than cement complex patterns.
539
-
540
- Run tests from the root directory:
541
-
542
-
543
- ```bash
544
- pytest -vv
545
- ```
546
-
547
- ### Formatting
548
-
549
- FastMCP enforces a variety of required formats, which you can automatically enforce with pre-commit.
550
-
551
- Install the pre-commit hooks:
552
-
553
- ```bash
554
- pre-commit install
555
- ```
556
-
557
- The hooks will now run on every commit (as well as on every PR). To run them manually:
558
-
559
- ```bash
560
- pre-commit run --all-files
561
- ```
562
-
563
- ### Opening a Pull Request
564
-
565
- Fork the repository and create a new branch:
566
-
567
- ```bash
568
- git checkout -b my-branch
569
- ```
570
-
571
- Make your changes and commit them:
572
-
573
-
574
- ```bash
575
- git add . && git commit -m "My changes"
576
- ```
577
-
578
- Push your changes to your fork:
579
-
580
-
581
- ```bash
582
- git push origin my-branch
583
- ```
584
-
585
- Feel free to reach out in a GitHub issue or discussion if you have any questions!
586
-
587
- </details>
@@ -1,28 +0,0 @@
1
- fastmcp/__init__.py,sha256=Y5dHGBwyQPgNP5gzOyNIItefvMZ3vJLdom1oV8A1u_k,248
2
- fastmcp/exceptions.py,sha256=q9djUDmpwmGEWcHI8q4UzJBtf7s7UtgL--OB7OaGzyQ,435
3
- fastmcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- fastmcp/server.py,sha256=ZyAXh9rBwpYXifJBwmf7xtanBjC3B-t0Uo-rXFTDAIY,22678
5
- fastmcp/cli/__init__.py,sha256=7hrwtCHX9nMd9qcz7R_JFSoqbL71fC35cBLXBS430mg,88
6
- fastmcp/cli/claude.py,sha256=5SoVEsA_PnOyOe2bcItvfcCwuhfX6W99TP1nXahLIJE,4442
7
- fastmcp/cli/cli.py,sha256=sWNhq0ryeWcT_ANCW-Ss4ldHfptVDm8d6GjNtJe-8x8,13510
8
- fastmcp/prompts/__init__.py,sha256=4BsMxoYolpoxg74xkkkzCFL8vvdkLVJ5cIPNs1ND1Jo,99
9
- fastmcp/prompts/base.py,sha256=8zAIvO3MyiBKs-c-fURMbTBi4CW-UuCizQ0Mv5t2Wnc,5530
10
- fastmcp/prompts/manager.py,sha256=EkexOB_N4QNtC-UlZmIcWcau91ceO2O1K4_kD75pA_A,1485
11
- fastmcp/prompts/prompt_manager.py,sha256=5uR14gsi7l0YHwbxFH7N5b_ACHHRWyTtBAH3R0-G5rk,1129
12
- fastmcp/resources/__init__.py,sha256=9QShop6ckX3Khh3BQLZNkB6R2ZhwskAcnh7-sIuX-W8,464
13
- fastmcp/resources/base.py,sha256=mKJUiOQaGJAc0qEim0R3Xzd_COtW3anOghAwGOmZ0v0,1368
14
- fastmcp/resources/resource_manager.py,sha256=b0PKpG-pKi7x2Yx-qaeknjv0mqL17zixSIYOz2V5G6o,3271
15
- fastmcp/resources/templates.py,sha256=_JHJ8sZqHsQM9p81Bcc_0-OBkYnYd1dFBoibFEMLwkw,2884
16
- fastmcp/resources/types.py,sha256=VbMaQ1n-UfN1eSQjz0LcadrmOBtAx6TadXkO4nA3fgg,6048
17
- fastmcp/tools/__init__.py,sha256=ZboxhyMJDl87Svjov8YwNYwNZi55P9VhmpTjBZLesnk,96
18
- fastmcp/tools/base.py,sha256=aJEOnNUs5KiTC16Szr8AEZyozTtpp0vZXtF5wMIA2mM,2797
19
- fastmcp/tools/tool_manager.py,sha256=PT6XHcQWzhdC6kfdsJaddRn7VLps4nAs5FMG8l1j8Zc,1617
20
- fastmcp/utilities/__init__.py,sha256=-imJ8S-rXmbXMWeDamldP-dHDqAPg_wwmPVz-LNX14E,31
21
- fastmcp/utilities/func_metadata.py,sha256=khB5bPMB9I8T7LfFDRwNzQSFqYVSME41KNZpIESmKY4,7266
22
- fastmcp/utilities/logging.py,sha256=1ipiOXzgWUp3Vih_JtEiLX7aAFmrUDZNr4KrZbofZTM,818
23
- fastmcp/utilities/types.py,sha256=kCjz2h3UlMAfHBB-HR5w6s9kauX0KLyQzRuHyhpaP4A,1810
24
- fastmcp-0.4.1.dist-info/METADATA,sha256=2fHmIZuO5ZRyealHazfFjz1i3-GCkS5LLhbNQlyU4C4,16367
25
- fastmcp-0.4.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
26
- fastmcp-0.4.1.dist-info/entry_points.txt,sha256=ff8bMtKX1JvXyurMibAacMSKbJEPmac9ffAKU9mLnM8,44
27
- fastmcp-0.4.1.dist-info/licenses/LICENSE,sha256=l3hc_411P__OCHoZlE2ZYWekMW-fmIZe9cYnGVyhu9I,1071
28
- fastmcp-0.4.1.dist-info/RECORD,,
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2024 Jeremiah Lowin
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.