mcpcraft
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcpcraftCreate a server with a tool that returns current time"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcpcraft-sdk
Build MCP servers in ~10 lines instead of ~100.
A lightweight TypeScript SDK for building Model Context Protocol (MCP) servers — zero boilerplate, full type safety, automatic schema generation.
Why mcpcraft-sdk?
The official @modelcontextprotocol/sdk requires ~100 lines of boilerplate per server. mcpcraft-sdk distills that down to ~10 lines — with automatic schema generation, type inference, and input validation.
import { createServer, tool } from "mcpcraft-sdk"
const server = createServer({ name: "hello-world" })
server.add(tool({
name: "greet",
description: "Greets a user by name",
input: {
name: { type: "string", description: "The user's name" }
},
run: async ({ name }) => {
return { message: `Hello, ${name}!` }
}
}))
server.start()That's a complete, working MCP server. ✅
Related MCP server: TypeScript MCP Server Boilerplate
What is MCP?
The Model Context Protocol (MCP) is an open standard that lets AI apps (Claude, Cursor, VS Code Copilot) call functions and read data from your server — the same way HTTP lets browsers talk to APIs. MCP is to AI what HTTP is to the web.
Install
npm install mcpcraft-sdk
# or
pnpm add mcpcraft-sdk
# or
yarn add mcpcraft-sdkQuick Start
1. Create your server
import { createServer, tool } from "mcpcraft-sdk"
const server = createServer({ name: "my-first-server" })
server.add(tool({
name: "get_weather",
description: "Get the current weather for a location",
input: {
location: { type: "string", description: "City name" }
},
run: async ({ location }) => {
return { temp: 22, condition: "Sunny", city: location }
}
}))
server.start()2. Run it
npx ts-node server.ts3. Connect it
Add to your MCP client config:
{
"mcpServers": {
"my-first-server": {
"command": "node",
"args": ["dist/server.js"]
}
}
}Architecture
AI Agent (Claude, Cursor)
│
▼ JSON-RPC over stdio/SSE
MCP Client
│
▼
Your MCP Server (mcpcraft-sdk)
│
├── Tools (executable functions)
└── Resources (read-only data)API Reference
createServer(options)
Creates a new MCP server instance with automatic transport setup.
Param | Type | Required | Default | Description |
|
| Yes | — | Server name (shown to MCP clients) |
|
| No |
| SemVer version |
|
| No | — | Human-readable description |
Methods:
server.add(item)— Register a tool or resource (chainable)server.start()— Launch the server on stdio transportserver.server— Access the underlying raw SDK Server instance
tool(options)
Defines an executable function that LLMs can invoke.
Param | Type | Required | Description |
|
| Yes | Alphanumeric identifier |
|
| Yes | Explains the tool to the LLM |
|
| No | Parameter definitions |
|
| Yes | Execution handler (typed args) |
Input Schema:
input: {
query: { type: "string", description: "Search query" },
limit: { type: "number", description: "Max results", required: false },
verbose: { type: "boolean", description: "Detailed output", required: false }
}resource(options)
Defines a read-only data source identified by URI.
Param | Type | Required | Description |
|
| Yes | Resource identifier |
|
| Yes | Describes the data to the LLM |
|
| Yes | URI or URI template ( |
|
| No | MIME type (default: |
|
| Yes | Returns the resource data |
Documentation
Full documentation is available at mcpcraft.vercel.app:
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abdunur-dev/mcpcraft'
If you have feedback or need assistance with the MCP directory API, please join our Discord server