{"id":28704931,"url":"https://github.com/zuplo/mcp","last_synced_at":"2025-06-26T20:35:00.311Z","repository":{"id":293113550,"uuid":"978857434","full_name":"zuplo/mcp","owner":"zuplo","description":"A fetch API based TypeScript SDK for MCP","archived":false,"fork":false,"pushed_at":"2025-06-10T20:00:48.000Z","size":1422,"stargazers_count":14,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-13T10:54:49.510Z","etag":null,"topics":["ai","mcp","mcp-server","modelcontextprotocol","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zuplo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-06T16:02:35.000Z","updated_at":"2025-06-10T20:00:52.000Z","dependencies_parsed_at":"2025-05-13T19:02:15.745Z","dependency_job_id":null,"html_url":"https://github.com/zuplo/mcp","commit_stats":null,"previous_names":["zuplo/mcp","zuplo/mcp-sdk"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/zuplo/mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuplo%2Fmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuplo%2Fmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuplo%2Fmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuplo%2Fmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zuplo","download_url":"https://codeload.github.com/zuplo/mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zuplo%2Fmcp/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259827667,"owners_count":22917714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","mcp","mcp-server","modelcontextprotocol","typescript"],"created_at":"2025-06-14T14:08:57.126Z","updated_at":"2025-06-14T14:09:02.778Z","avatar_url":"https://github.com/zuplo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![zuplo mcp logo](assets/zuplo-mcp.png)\n\n\u003ch1\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ccode\u003e@zuplo/mcp\u003c/code\u003e\n  \u003c/p\u003e\n\u003c/h1\u003e\n  \u003cp align=\"center\"\u003e\n    A \u003ccode\u003efetch\u003c/code\u003e API based, remote server first, TypeScript SDK for MCP.\n    \u003cbr /\u003e\n    \u003ca href=\"#about\"\u003eAbout\u003c/a\u003e\n    ·\n    \u003ca href=\"#documentation\"\u003eDocumentation\u003c/a\u003e\n    ·\n    \u003ca href=\"#contributing\"\u003eContributing\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n---\n\n🚧 Warning! In active development! 🚧\n\n**Attributions**\n\nInspired by (with MIT Licensed attributions) - [`modelcontextprotocol/typescript-sdk`](https://github.com/modelcontextprotocol/typescript-sdk)\n\n# 🚀 About\n\n`@zuplo/mcp` is a remote server first MCP SDK that aims to be [\"minimum common API\" compliant as defined by the WinterTC](https://min-common-api.proposal.wintertc.org/).\nIt uses the [`fetch` APIs](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) and is intended to work out of the box on Zuplo, Node, Deno, Workerd, etc.\n\n# 📝 Documentation\n\n## Quickstart\n\n1. Create an MCP server:\n\n```ts\nconst server = new MCPServer({\n  name: \"Example Server\",\n  version: \"1.0.0\",\n});\n```\n\n2. Add some tools:\n\n```ts\nserver.addTool({\n  name: \"add\",\n  description: \"Adds two numbers together and returns the result.\",\n  validator: new ZodValidator(\n    z.object({\n      a: z.number().describe(\"First number\"),\n      b: z.number().describe(\"Second number\")\n    })\n  ),\n  handler: async ({ a, b }) =\u003e ({\n    content: [{ type: \"text\", text: String(a + b) }],\n    isError: false,\n  })\n});\n```\n\n3. Wire up your MCP server with a transport:\n\n```ts\nconst transport = new HTTPStreamableTransport()\nawait transport.connect();\n\nserver.withTransport(transport);\n```\n\n4. Handle a `Request`:\n\n```ts\nconst response = await transport.handleRequest(httpRequest);\n```\n\n# 🤝 Contributing\n\nSee the [`CONTRIBUTING.md`](./CONTRIBUTING.md) for further details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzuplo%2Fmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzuplo%2Fmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzuplo%2Fmcp/lists"}