Skip to main content
Glama
rnsrashmika078

TS-MCP-Server

MCP Server -> Typescript

Using with Claude Desktop

Add the following MCP config to your Claude Desktop configuration:

{
    "mcpServers": {
        "your-mcp-name": {
            "command": "node",
            "args": ["ABSOLUTE_PATH_TO_MCP_SERVER/build/index.js"]
        }
    }
}

Related MCP server: MCP Server Boilerplate

Development

The template includes a sample tool implementation in index.ts. To create your own MCP:

  1. Modify the server configuration in index.ts:

const server = new McpServer({
    name: "your-mcp-name",
    version: "0.0.1",
});
  1. Define your custom tools using the server.tool() method:

server.tool(
    "your-tool-name",
    "Your tool description",
    {
        parameter: z.string().describe("Parameter description"),
    },
    async ({ parameter }) => {
        return {
            content: [
                {
                    type: "text",
                    text: "Your tool's response",
                },
            ],
        };
    }
);
  1. Build and test your implementation:

npm run build
```"# TS-MCP-Server" 

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    D
    maintenance
    A starter template for building custom MCP servers that can integrate with Claude Desktop, Cursor, and other AI assistants. Provides example tools, TypeScript support, and automated publishing workflows to help developers create their own AI assistant integrations.
    7
    11
    -
  • F
    license
    C
    quality
    D
    maintenance
    A starter template for building custom MCP servers that can integrate with Claude Desktop, Cursor, and other AI assistants. Provides example tools, TypeScript support, and automated publishing workflow to help developers create their own tools and resource providers.
    2
    5
    -
  • F
    license
    Not graded
    quality
    D
    maintenance
    A starter template for building MCP servers with TypeScript support, example tools, and automated installation scripts for Claude Desktop, Cursor, and other MCP-compatible AI assistants. Provides a foundation for creating custom tools, resource providers, and prompt templates.
    5
    -
  • F
    license
    A
    quality
    D
    maintenance
    A starter template for building custom MCP servers that can integrate with Claude Desktop, Cursor, and other AI assistants. Provides example tools, TypeScript support, and automated publishing workflows to help developers quickly create their own MCP servers.
    7
    11
    -