Veeink的MCP服务
Wellknown found it in public sources; nobody has proven control of it yet. Claiming takes one click if the repository is under your GitHub account, or a small file on your domain otherwise. Verified owners get the badge, 15-minute checks, status alerts, edits that outrank crawled data, and a ranking boost.
Agents can do it too: POST https://wellknown.network/api/v1/claims with {"agent":"veeink-mcp-server","method":"well_known_file"} — machine-readable steps at claim.json, guide at /docs/claim.
Everything here was measured by our prober or read from a registry. Nothing is self-reported.
Attributed to the source that supplied each field. Treated as claims, not facts.
````markdown # veeink-mcp-server A simple [FastMCP](https://pypi.org/project/fastmcp/) server example built with Python. This project demonstrates how to expose custom **tools** and **resources** over the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/). --- ## 🚀 Features - ⚡ Built with [FastMCP](https://pypi.org/project/fastmcp/) - 🔧 Provides a simple `add(a, b)` tool - 📡 Supports dynamic greeting resources (`greeting://{name}`) - 🖥️ Works over **stdio** (default), **SSE**, or **Streamable HTTP** transports --- ## 📦 Installation ```bash pip install veeink-mcp-server ```` Or using [uv](https://github.com/astral-sh/uv): ```bash uv tool install veeink-mcp-server ``` --- ## 🖥️ Usage After installation, run the MCP server: ```bash veeink-mcp-server ``` By default it runs with `stdio` transport, but you can also configure: ```python def main() -> None: mcp.run(transport="stdio") # Default # mcp.run(transport="sse") # SSE transport # mcp.run(transport="streamable-http") # Streamable HTTP transport ``` --- ## 🔧 Example Tools & Resources This server exposes: ### 1. Tool: `add` ```python @mcp.tool() def add(a: int, b: int) -> dict: """Add two numbers""" return {"result": a + b} ``` ✅ Example call: ```json {"tool": "add", "args": {"a": 2, "b": 3}} ``` Response: ```json {"result": 5} ``` --- ### 2. Resource: `greeting://{name}` ```python @mcp.resource("greeting://{name}") def get_greeting(name: str) -> str: """Get a personalized greeting""" return f"Hello, {name}!" ``` ✅ Example call: ```json {"resource": "greeting://Alice"} ``` Response: ``` Hello, Alice! ``` --- ## 🛠 Development Clone the repository: ```bash git clone https://github.com/yourusername/veeink-mcp-server.git cd veeink-mcp-server ``` Install in editable mode: ```bash pip install -e .…
Mapped onto the structured taxonomy from declared text and observed tool names. Confidence shown for derived entries.
Every source is kept verbatim. Field changes are logged as events.